Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
1011b862
Unverified
Commit
1011b862
authored
6 years ago
by
Peter van 't Hof
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #16 from biowdl/BIOWDL-32
Centrifuge related changes
parents
d8fd7569
2b4ad659
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
biopet.wdl
+16
-14
16 additions, 14 deletions
biopet.wdl
centrifuge.wdl
+35
-26
35 additions, 26 deletions
centrifuge.wdl
with
51 additions
and
40 deletions
biopet.wdl
+
16
−
14
View file @
1011b862
...
...
@@ -12,8 +12,8 @@ task BaseCounter {
Float? memory
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 12.0]))
command {
set -e -o pipefail
mkdir -p ${outputDir}
...
...
@@ -72,7 +72,7 @@ task FastqSplitter {
File inputFastq
String outputPath
Int numberChunks
String
tool
_j
ar
File
tool
J
ar
Array[Int] chunks = range(numberChunks)
command {
...
...
@@ -81,7 +81,7 @@ task FastqSplitter {
mkdir -p ${sep=' ' prefix(outputPath + "/chunk_", chunks)}
if [ ${numberChunks} -gt 1 ]; then
SEP="/${basename(inputFastq)} -o "
java -jar ${tool
_j
ar} -I ${inputFastq} -o ${sep='$SEP' prefix(outputPath + "/chunk_", chunks)}/${basename(inputFastq)}
java -jar ${tool
J
ar} -I ${inputFastq} -o ${sep='$SEP' prefix(outputPath + "/chunk_", chunks)}/${basename(inputFastq)}
else
ln -sf ${inputFastq} ${outputPath}/chunk_0/${basename(inputFastq)}
fi
...
...
@@ -100,12 +100,13 @@ task FastqSync {
File in2
String out1path
String out2path
File tool_jar
File toolJar
command {
set -e -o pipefail
${preCommand}
mkdir -p $(dirname ${out1path}) $(dirname ${out2path})
java -jar ${tool
_j
ar} \
java -jar ${tool
J
ar} \
--in1 ${in1} \
--in2 ${in2} \
--ref1 ${ref1} \
...
...
@@ -113,6 +114,7 @@ task FastqSync {
--out1 ${out1path} \
--out2 ${out2path}
}
output {
File out1 = out1path
File out2 = out2path
...
...
@@ -121,7 +123,7 @@ task FastqSync {
task SampleConfig {
String? preCommand
String
tool
_j
ar
File
tool
J
ar
Array[File]+ inputFiles
String keyFilePath
String? sample
...
...
@@ -132,13 +134,13 @@ task SampleConfig {
Float? memory
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
command {
set -e -o pipefail
${preCommand}
mkdir -p . ${"$(dirname " + jsonOutputPath + ")"} ${"$(dirname " + tsvOutputPath + ")"}
java -Xmx${mem}G -jar ${tool
_j
ar} \
java -Xmx${mem}G -jar ${tool
J
ar} \
-i ${sep="-i " inputFiles} \
${"--sample " + sample} \
${"--library " + library} \
...
...
@@ -161,23 +163,23 @@ task SampleConfig {
task ScatterRegions {
String? preCommand
File ref
_f
asta
File ref
_d
ict
File ref
F
asta
File ref
D
ict
String outputDirPath
String
tool
_j
ar
File
tool
J
ar
Int? scatterSize
File? regions
Float? memory
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
command {
set -e -o pipefail
${preCommand}
mkdir -p ${outputDirPath}
java -Xmx${mem}G -jar ${tool
_j
ar} \
-R ${ref
_f
asta} \
java -Xmx${mem}G -jar ${tool
J
ar} \
-R ${ref
F
asta} \
-o ${outputDirPath} \
${"-s " + scatterSize} \
${"-L " + regions}
...
...
This diff is collapsed.
Click to expand it.
centrifuge.wdl
+
35
−
26
View file @
1011b862
# Copyright Sequencing Analysis Support Core - Leiden University Medical Center 2018
#
# Tasks from centrifuge
task build {
task Build {
File conversionTable
File taxonomyTree
File inputFasta
...
...
@@ -22,9 +21,10 @@ task build {
File? nameTable
File? sizeTable
Int? seed
Int? kmerCount
Int? threads
Int? memory
Int? kmerCount
command {
set -e -o pipefail
...
...
@@ -56,25 +56,28 @@ task build {
}
}
task
c
lassify {
task
C
lassify {
String outputDir
Boolean? compressOutput = true
String? preCommand
String indexPrefix
File? unpairedReads
File read1
File? read2
Array[
File
]
? unpairedReads
Array[
File
]+
read1
Array[
File
]
? read2
Boolean? fastaInput
# Variables for handling output
String outputFileName = outputDir + "/centrifuge.out"
String reportFileName = outputDir + "/centrifuge_report.tsv"
String finalOutputName = if (compressOutput == true) then outputFileName + ".gz" else outputFileName
String? metFileName # If this is specified, the report file is empty
String outputFilePath = outputDir + "/centrifuge.out"
String reportFilePath = outputDir + "/centrifuge_report.tsv"
String finalOutputPath = if (compressOutput == true)
then outputFilePath + ".gz"
else outputFilePath
String? metFilePath # If this is specified, the report file is empty
Int? assignments
Int? minHitLen
Int? minTotalLen
Array[String]? hostTaxIds
Array[String]? excludeTaxIds
Int? threads
Int? memory
...
...
@@ -86,22 +89,22 @@ task classify {
${"-p " + threads} \
${"-x " + indexPrefix} \
${true="-f" false="" fastaInput} \
${true="-k
" false="" defined(assignments)} ${assignments} \
${true="-1
" false="-U
" defined(read2)} ${read1} \
${
"-2 " +
read2} \
${
"-U " +
unpairedReads} \
${"--report-file " + reportFile
Name
} \
${true="-k" false="" defined(assignments)} ${assignments} \
${true="-1" false="-U" defined(read2)} ${
sep=','
read1} \
${
true="-2" false="" defined(read2)} ${sep=','
read2} \
${
true="-U" false="" defined(unpairedReads)} ${sep=','
unpairedReads} \
${"--report-file " + reportFile
Path
} \
${"--min-hitlen " + minHitLen} \
${"--min-totallen " + minTotalLen} \
${"--met-file " + metFile
Name
} \
${"--met-file " + metFile
Path
} \
${true="--host-taxids " false="" defined(hostTaxIds)} ${sep=',' hostTaxIds} \
${true="--exclude-taxids " false="" defined(excludeTaxIds)} ${sep=',' excludeTaxIds} \
${true="| gzip -c >" false="-S" compressOutput} ${finalOutput
Name
}
${true="| gzip -c >" false="-S" compressOutput} ${finalOutput
Path
}
}
output {
File classifiedReads = finalOutput
Name
File reportFile = reportFile
Name
File classifiedReads = finalOutput
Path
File reportFile = reportFile
Path
}
runtime {
...
...
@@ -110,7 +113,7 @@ task classify {
}
}
task
d
ownload {
task
D
ownload {
String libraryPath
Array[String]? domain
String? executable = "centrifuge-download"
...
...
@@ -153,10 +156,11 @@ task download {
}
}
task
d
ownloadTaxonomy {
task
D
ownloadTaxonomy {
String centrifugeTaxonomyDir
String? executable = "centrifuge-download"
String? preCommand
command {
set -e -o pipefail
${preCommand}
...
...
@@ -164,23 +168,28 @@ task downloadTaxonomy {
-o ${centrifugeTaxonomyDir} \
taxonomy
}
output {
File taxonomyTree = centrifugeTaxonomyDir + "/nodes.dmp"
File nameTable = centrifugeTaxonomyDir + "/names.dmp"
}
}
task
k
report {
task
K
report {
String? preCommand
File centrifugeOut
Boolean inputIsCompressed
String kreportFileName=sub(centrifugeOut, "\\.out$|\\.out\\.gz$", "\\.kreport")
String outputDir
String? suffix = "kreport"
String? prefix = "centrifuge"
String kreportFilePath = outputDir + "/" + prefix + "." + suffix
String indexPrefix
Boolean? onlyUnique
Boolean? showZeros
Boolean? isCountTable
Int? minScore
Int? minLength
Int? cores
Int? memory
...
...
@@ -196,11 +205,11 @@ task kreport {
${"--min-length " + minLength} \
${true="<(zcat" false="" inputIsCompressed} ${centrifugeOut}\
${true=")" false="" inputIsCompressed} \
> ${kreportFile
Name
}
> ${kreportFile
Path
}
}
output {
File kreport = kreportFile
Name
File kreport = kreportFile
Path
}
runtime {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment