Skip to content

Commit

Permalink
gtdbtk update
Browse files Browse the repository at this point in the history
  • Loading branch information
replikation committed Nov 20, 2023
1 parent 5fc0612 commit e72cc54
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion configs/docker.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ process {
withLabel: filtlong { container = 'nanozoo/filtlong:v0.2.0--afa175e' }
withLabel: flye { container = 'nanozoo/flye:2.8.3--2769e9b' }
withLabel: ggplot2 { container = 'nanozoo/ggplot2:3.3.1--303f617' }
withLabel: gtdbtk { container = 'nanozoo/gtdb:1.6.0--5383545' }
withLabel: gtdbtk { container = 'nanozoo/gtdbtk:2.3.2--641ec99' }
withLabel: kraken2 { container = 'nanozoo/kraken2:2.1.1--d5ded30'}
withLabel: krakentools { container = 'nanozoo/krakentools:1.2--13d5ba5'}
withLabel: krona { container = 'nanozoo/krona:2.7.1--e7615f7'}
Expand Down
5 changes: 1 addition & 4 deletions modules/fargene.nf
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
process fargene {
label 'fargene'
errorStrategy 'ignore'
validExitStatus 0,1
input:
tuple val(name), val(splitname), val(type), path(fasta)
tuple val(name), val(splitname), val(type), path(fasta) optional true
each method
output:
path("${method}_${type}_${name}_*.fargene")
Expand All @@ -19,7 +17,6 @@ process fargene {

process fargene_plasmid_screen {
label 'fargene'
validExitStatus 0,1
//publishDir "${params.output}/fargene/", mode: 'copy'
input:
tuple val(name), path(fasta)
Expand Down
2 changes: 1 addition & 1 deletion modules/gtdbtk.nf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ process gtdbtk {
# file suffix get
SUFFIXNAME=\$(ls ${dir} | head -1 | rev | cut -f1 -d "." | rev)
gtdbtk classify_wf --genome_dir ${dir} --cpus 1 --out_dir ${name}-results -x \${SUFFIXNAME} --scratch_dir scratch_dir
gtdbtk classify_wf --genome_dir ${dir} --skip_ani_screen --pplacer_cpus 1 --out_dir ${name}-results -x \${SUFFIXNAME} --scratch_dir scratch_dir
"""
}
6 changes: 3 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ profiles {
google {
project = 'case-dev-302214'
zone = 'europe-west1-b'
lifeSciences.preemptible = false
lifeSciences.bootDiskSize = 50.GB
}
lifeSciences { preemptible = false
bootDiskSize = 100.GB
} }
includeConfig 'configs/docker.config'
includeConfig 'configs/gcloud.config'

Expand Down

0 comments on commit e72cc54

Please sign in to comment.