Skip to content

Commit

Permalink
fixed path to new indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagofilipe12 committed May 29, 2018
1 parent 3693d20 commit 8cc7dee
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if (params.mash_screen || params.mapping) {
if (params.mash_screen || params.assembly) {
// creates two channels for each approach
Channel
.value("/ngstools/data/patlas.msh")
.value("/ngstools/data/patlas_mash_sketch.msh")
.into { refSketchChannel; refSketchChannel2 }
}
else {
Expand Down Expand Up @@ -67,9 +67,9 @@ if (params.mapping) {
// samtoolsIndex = "/ngstools/data/indexes/fasta/samtools.fasta.fai" // maindb_path
// lengthJson = "/ngstools/data/reads_sample_result_length.json"
bowtieStuffChannel = Channel
.value("/ngstools/data/indexes/bowtie2idx/bowtie2")
.value("/ngstools/data/indexes/patlas_bowtie_index")
samtoolsStuffChannel = Channel
.value("/ngstools/data/indexes/fasta/samtools.fasta.fai")
.value("/ngstools/data/indexes/master_fasta_patlas_version_18042018.fas.fai")
lengthJsonChannel = Channel
.value("/ngstools/data/reads_sample_result_length.json")
}
Expand Down
14 changes: 7 additions & 7 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ params {
}

process {
$mashScreen.container = 'tiagofilipe12/patlasflow_mash_screen:1.1'
$mashOutputJson.container = 'tiagofilipe12/patlasflow_mash_screen:1.1'
$runMashDist.container = 'tiagofilipe12/patlasflow_mash_screen:1.1'
$mashDistOutputJson.container = 'tiagofilipe12/patlasflow_mash_screen:1.1'
$mappingBowtie.container = 'tiagofilipe12/patlasflow_mapping:1.1.4'
$samtoolsView.container = 'tiagofilipe12/patlasflow_mapping:1.1.4'
$jsonDumpingMapping.container = 'tiagofilipe12/patlasflow_mapping:1.1.4'
$mashScreen.container = 'tiagofilipe12/patlasflow_mash_screen:1.1.1'
$mashOutputJson.container = 'tiagofilipe12/patlasflow_mash_screen:1.1.1'
$runMashDist.container = 'tiagofilipe12/patlasflow_mash_screen:1.1.1'
$mashDistOutputJson.container = 'tiagofilipe12/patlasflow_mash_screen:1.1.1'
$mappingBowtie.container = 'tiagofilipe12/patlasflow_mapping:1.1.5'
$samtoolsView.container = 'tiagofilipe12/patlasflow_mapping:1.1.5'
$jsonDumpingMapping.container = 'tiagofilipe12/patlasflow_mapping:1.1.5'
}

// this should be passed with the -profile mash_screen
Expand Down

0 comments on commit 8cc7dee

Please sign in to comment.