Skip to content

AndersenLab/CeNDR

Folders and files

NameName
Last commit message
Last commit date
Jun 9, 2020
Apr 29, 2021
Apr 5, 2021
Apr 29, 2021
Apr 13, 2021
Aug 15, 2020
Aug 30, 2020
Jan 18, 2018
Aug 15, 2020
Mar 22, 2021
Jan 17, 2018
Apr 15, 2021
May 6, 2020
Apr 14, 2021
Apr 14, 2021
Apr 28, 2021
Jul 24, 2019
Jul 24, 2019
Apr 13, 2021
Jul 26, 2017
Jun 9, 2020
Apr 14, 2021
Mar 22, 2021
Apr 15, 2021
Apr 20, 2021
Apr 13, 2021
Apr 28, 2021
Apr 14, 2021
Apr 14, 2021
Feb 26, 2016
Apr 13, 2021
Apr 26, 2021
Apr 28, 2021
Apr 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