-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added minimum_envs folder and contents
For commands and resources to update envs when needed
- Loading branch information
Showing
16 changed files
with
145 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
This folder contains the minimum tools required for each MOSCA environment. | ||
|
||
When updating a new environment, the following commands should be run from this directory, assigning the correct value for the `ENV_NAME` variable: | ||
`bash | ||
ENV_NAME=env_name | ||
mamba create $ENV_NAME.yml | ||
mamba env export --from-history -f $ENV_NAME.yml > $ENV_NAME.yml | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: assembly | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- bowtie2 | ||
- gmcloser | ||
- megahit | ||
- quast | ||
- samtools | ||
- spades |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: binning | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- checkm-genome | ||
- maxbin2 | ||
- pandas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: de_analysis | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- bioconductor-annotationdbi # check if needed | ||
- bioconductor-deseq2 | ||
- bioconductor-genomeinfodb | ||
- bioconductor-genomeinfodbdata # check if needed | ||
- bioconductor-genomicranges # check if needed | ||
- bioconductor-rots | ||
- r-base=4 # check if needed | ||
- r-pheatmap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: gene_calling | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- fraggenescan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: keggcharter | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- keggcharter>=1.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: metaproteomics | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- peptide-shaker=2 | ||
- searchgui=4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: normalization | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- bioconductor-limma # check if needed | ||
- bioconductor-pcamethods | ||
- bioconductor-vsn | ||
- r-base=4 # check if needed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: preprocess | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- fastqc | ||
- pandas | ||
- numpy | ||
- sortmerna=4 | ||
- trimmomatic=0.39 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: quantification | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- bowtie2 | ||
- numpy | ||
- pandas | ||
- samtools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: recognizer | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- recognizer>=1.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: reports | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- numpy | ||
- openpyxl | ||
- pandas | ||
- tqdm | ||
- xlsxwriter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: seqkit | ||
channels: | ||
- bioconda | ||
- defaults | ||
dependencies: | ||
- seqkit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: summary | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- numpy | ||
- openpyxl | ||
- pandas | ||
- tqdm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: upimapi | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- anaconda | ||
- defaults | ||
dependencies: | ||
- upimapi>=1.13.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters