-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from NBISweden/develop
Merge development changes for release v2.2
- Loading branch information
Showing
46 changed files
with
454 additions
and
357 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 |
---|---|---|
|
@@ -13,4 +13,3 @@ indent_size = 4 | |
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
*.smk linguist-language=Python | ||
Snakefile linguist-language=Python | ||
|
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
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 |
---|---|---|
@@ -1,24 +1,23 @@ | ||
# Testing | ||
|
||
This directory contains config files, resources and scripts used to test the | ||
This directory contains config files, resources and scripts used to test the | ||
workflow. | ||
|
||
**config/** | ||
|
||
Files under `config/` are used by the different test steps of the github | ||
Files under `config/` are used by the different test steps of the github | ||
actions testing. | ||
|
||
**data/** | ||
|
||
The fasta file at `data/uniref100.fasta` was created by: | ||
|
||
1. searching [uniprot](https://uniprot.org) for the 5 taxids used to generate | ||
1. searching [uniprot](https://uniprot.org) for the 5 taxids used to generate | ||
the [synthetic metagenome](https://zenodo.org/record/3737112#.XsUQncZ8LOQ) that | ||
this workflow uses for testing. This resulted in 8,122 identified sequences. | ||
2. mapping the sequences to their UniRef100 id via the Retrieve/ID mapping tool | ||
at uniprot, followed by downloading of the reference sequences. | ||
3. subsampling 100 sequences from the downloaded fastafile using `seqtk | ||
|
||
During testing the fasta file is used to build and query a diamond database | ||
using `tango`. | ||
|
||
During testing the fasta file is used to build and query a diamond database | ||
using `tango`. |
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
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
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
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 @@ | ||
#!/bin/bash | ||
|
||
base="https://github.com/eggnogdb/eggnog-mapper/blob/master/tests/fixtures" | ||
|
||
mkdir -p resources/eggnog-mapper | ||
curl -L -o resources/eggnog-mapper/eggnog.db "${base}/eggnog.db?raw=true" | ||
curl -L -o resources/eggnog-mapper/eggnog_proteins.dmnd "${base}/eggnog_proteins.dmnd?raw=true" | ||
touch resources/eggnog-mapper/eggnog.version |
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
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
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 |
---|---|---|
|
@@ -9,4 +9,4 @@ extra_fn_clean_exts: | |
- '_PHIX' | ||
- '.sortmerna' | ||
- '_R1' | ||
- '_R2' | ||
- '_R2' |
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ dependencies: | |
- pfam_scan=1.6 | ||
- eggnog-mapper=2.0.1 | ||
- infernal=1.1.2 | ||
- trnascan-se=2.0.5 | ||
- trnascan-se=2.0.5 |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ channels: | |
- conda-forge | ||
- defaults | ||
dependencies: | ||
- barrnap=0.9 | ||
- barrnap=0.9 |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ channels: | |
- bioconda | ||
- defaults | ||
dependencies: | ||
- centrifuge=1.0.4_beta | ||
- centrifuge=1.0.4_beta |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ channels: | |
- defaults | ||
dependencies: | ||
- python=3.7.6 | ||
- checkm-genome=1.1.2 | ||
- checkm-genome=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 |
---|---|---|
|
@@ -5,4 +5,4 @@ channels: | |
dependencies: | ||
- python=3.7.6 | ||
- biopython=1.76 | ||
- concoct=1.1.0 | ||
- concoct=1.1.0 |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ name: cookiecutter | |
channels: | ||
- conda-forge | ||
dependencies: | ||
- cookiecutter | ||
- cookiecutter |
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: edger | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- r | ||
- defaults | ||
dependencies: | ||
- r-base | ||
- bioconductor-edger=3.30.0 |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ channels: | |
- bioconda | ||
dependencies: | ||
- graphlan=1.1.3 | ||
- export2graphlan=0.20 | ||
- export2graphlan=0.20 |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ channels: | |
- conda-forge | ||
- defaults | ||
dependencies: | ||
- kraken2=2.0.8_beta | ||
- kraken2=2.0.8_beta |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ channels: | |
- defaults | ||
dependencies: | ||
- krona=2.7.1 | ||
- make=4.2.1 | ||
- make=4.2.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 |
---|---|---|
|
@@ -2,4 +2,4 @@ channels: | |
- bioconda | ||
dependencies: | ||
- maxbin2=2.2.7 | ||
- perl-lwp-simple=6.15 | ||
- perl-lwp-simple=6.15 |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ channels: | |
- defaults | ||
dependencies: | ||
- python=3.8.1 | ||
- megahit=1.2.9 | ||
- megahit=1.2.9 |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ channels: | |
- conda-forge | ||
- defaults | ||
dependencies: | ||
- metabat2=2.14 | ||
- metabat2=2.14 |
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: metagenomeseq | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- r | ||
- defaults | ||
dependencies: | ||
- r-base | ||
- bioconductor-metagenomeseq |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ channels: | |
- defaults | ||
dependencies: | ||
- python=3.7.6 | ||
- metaphlan=3.0 | ||
- metaphlan=3.0 |
Oops, something went wrong.