Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#Dockerfile for documentation
#
#
#
#

FROM sphinxdoc/sphinx
WORKDIR /docs
ADD requirements.txt /docs
RUN pip3 install -r requirements.txt
2 changes: 1 addition & 1 deletion modules/local/align_reads.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process ALIGN_READS {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/binning.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ process BINNING {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/binning_summary.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process BINNING_SUMMARY {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/hmmer_hmmsearch_filter.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ process HMMER_HMMSEARCH_FILTER {

conda (params.enable_conda ? "autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/length_table.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process LENGTH_TABLE {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/majority_vote.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process MAJORITY_VOTE {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/markers.nf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process MARKERS {

conda (params.enable_conda ? "autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/prepare_lca.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ process PREPARE_LCA {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/reduce_lca.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process REDUCE_LCA {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/spades_kmer_coverage.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process SPADES_KMER_COVERAGE {

conda (params.enable_conda ? "autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/split_kingdoms.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process SPLIT_KINGDOMS {

conda (params.enable_conda ? "bioconda::autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/unclustered_recruitment.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process RECRUIT {

conda (params.enable_conda ? "autometa" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/prepare_ncbi_taxinfo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ process DOWNLOAD_TAXDUMP {

conda (params.enable_conda ? "conda-forge::rsync=3.2.3" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down
4 changes: 2 additions & 2 deletions subworkflows/local/prepare_nr.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ process DOWNLOAD_NR {

conda (params.enable_conda ? "conda-forge::rsync=3.2.3" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down Expand Up @@ -46,7 +46,7 @@ process TEST_DOWNLOAD {

conda (params.enable_conda ? "conda-forge::rsync=3.2.3" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/YOUR-TOOL-HERE"
container "https://depot.galaxyproject.org/singularity/autometa:2.2.0--pyh7cba7a3_0"
} else {
container "jasonkwan/autometa:${params.autometa_image_tag}"
}
Expand Down