diff --git a/EM/cryodrgn/README.md b/EM/cryodrgn/README.md new file mode 100644 index 0000000..fcd9c2e --- /dev/null +++ b/EM/cryodrgn/README.md @@ -0,0 +1,11 @@ +# cryoDRGN + +CryoDRGN is installed in a central conda environment. +## Adding New Versions + +To add a new version, first create the conda environment, as described in +../../Programming/anaconda/2019.07/conda-env-defs/cryodrgn/README.md. + +Next, update files/variants with the new version and run `./build ` to +install the modulefile + diff --git a/EM/cryodrgn/build b/EM/cryodrgn/build new file mode 100755 index 0000000..6f1766a --- /dev/null +++ b/EM/cryodrgn/build @@ -0,0 +1,20 @@ +#!/usr/bin/env modbuild + + +pbuild::add_to_group 'EM' +pbuild::prep() { + : +} + +pbuild::configure() { + : +} + +pbuild::compile() { + : +} + +pbuild::install() { + : +} + diff --git a/EM/cryodrgn/files/variants b/EM/cryodrgn/files/variants new file mode 100644 index 0000000..b1adf0b --- /dev/null +++ b/EM/cryodrgn/files/variants @@ -0,0 +1,2 @@ +cryodrgn/1.1.0 stable anaconda/2019.07 + diff --git a/EM/cryodrgn/modulefile b/EM/cryodrgn/modulefile new file mode 100644 index 0000000..3f5a9c1 --- /dev/null +++ b/EM/cryodrgn/modulefile @@ -0,0 +1,49 @@ +#%Module + +module-whatis "cryoDRGN: Deep Reconstructing Generative Networks for cryo-EM heterogeneous reconstruction" +module-url "https://github.com/zhonge/cryodrgn" +module-license "GPL v3.0" +module-maintainer "Spencer Bliven " + +module-help " +CryoDRGN is a neural network based algorithm for heterogeneous cryo-EM +reconstruction. In particular, the method models a continuous distribution over +3D structures by using a neural network based representation for the volume. + +> CryoDRGN: reconstruction of heterogeneous cryo-EM structures using neural +> networks. Ellen D. Zhong, Tristan Bepler, Bonnie Berger, Joseph H. Davis. +> https://www.nature.com/articles/s41592-020-01049-4 + +> Reconstructing continuous distributions of 3D protein structure from cryo-EM +> images. Ellen D. Zhong, Tristan Bepler, Joseph H. Davis, Bonnie Berger. +> ICLR 2020, Spotlight presentation, https://arxiv.org/abs/1909.05215 +" + +# Check for supported shell types +set shelltype [module-info shelltype] +switch -- $shelltype { + "sh" { + puts stdout "source \"\${ANACONDA_PREFIX}\"/admintools/conda_setup.sh;\n" + } + default { + puts stderr "Shells of type '$shelltype' are NOT supported!" + } +} + +# Determine useflags and construct conda env name +set list [split $V "_"] +set version [lindex ${list} 0] +set useflags [lrange ${list} 1 end] +set env_to_activate [string tolower ${P}]-${version} + +switch [module-info mode] { + "load" { + # Relies on the anaconda module being loaded since we need to update the path + puts stdout "conda activate $env_to_activate;\n" + } + "unload" - + "remove" { + puts stdout "conda deactivate;\n" + } +} +