Skip to content

AndersenLab/CeNDR

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f17a544 · Sep 15, 2021
Jun 9, 2020
Sep 9, 2021
Apr 5, 2021
Sep 15, 2021
May 10, 2021
Aug 30, 2020
Jan 18, 2018
Aug 15, 2020
Sep 15, 2021
Jan 17, 2018
Jun 12, 2021
Sep 15, 2021
Apr 14, 2021
Apr 14, 2021
Sep 13, 2021
Jul 24, 2019
Sep 15, 2021
May 13, 2021
Jul 26, 2017
Jun 9, 2020
Sep 13, 2021
Sep 15, 2021
Sep 15, 2021
Sep 8, 2021
Apr 20, 2021
Jun 11, 2021
Feb 26, 2016
Apr 13, 2021
Jun 20, 2021
Jun 20, 2021
May 13, 2021
Dec 2, 2016

Repository files navigation

Build Status

CeNDR

CeNDR is the code used to run the Caenorhabditis elegans Natural Diversity Resource website.

cendr website

Page versions

  • download_tab_isotype_v1.html - references the original download table which links to isotype-level bams

  • download_tab_strain_v2.html - references the new CeNDR versions which organize sequence data at the strain level.

Building the static database

Initializing the database

You can create the CeNDR database by running:

flask initdb WS276 # Where WS276 is the version of wormbase

Running the docker container

docker build -t cendr .
GAE_VERSION=`cat .travis.yml  | grep 'export VERSION' | cut -f 2 -d '=' | sed 's/version-//g' | awk '{gsub("-", ".", $0); print}'`
# Doesn't require rebuilding
docker run -it -v $PWD:/home/vmagent/app -e GOOGLE_APPLICATION_CREDENTIALS=client-secret.json -e APP_CONFIG=debug -e GAE_VERSION=${GAE_VERSION} --publish $PORT:$PORT cendr /bin/bash
gunicorn -b :$PORT main:app