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
fa4a6785
Commit
fa4a6785
authored
7 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
some debugging
parent
31b9347a
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
cutadapt.wdl
+1
-1
1 addition, 1 deletion
cutadapt.wdl
fastqc.wdl
+11
-6
11 additions, 6 deletions
fastqc.wdl
with
12 additions
and
7 deletions
cutadapt.wdl
+
1
−
1
View file @
fa4a6785
...
...
@@ -111,6 +111,6 @@ task cutadapt {
File? wildcardFile=wildcardFilePath
}
runtime {
cpu: select_first(cores)
cpu: select_first(
[
cores
]
)
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
fastqc.wdl
+
11
−
6
View file @
fa4a6785
...
...
@@ -21,7 +21,7 @@ task fastqc {
${"source activate " + condaEnv}
mkdir -p ${outdirPath}
fastqc \
${"--outdir " + outdirPath}
${"--outdir " + outdirPath}
\
${true="--casava" false="" casava} \
${true="--nano" false="" nano} \
${true="--nofilter" false="" noFilter} \
...
...
@@ -55,21 +55,24 @@ task fastqc {
}
runtime {
cpu: select_first(threads)
cpu: select_first(
[
threads
]
)
}
}
task extractAdapters {
File extractAdaptersFastqcJar
File inputFile
String? adapterOutputFilePath
String? contamsOutputFilePath
String outputDir
String? adapterOutputFilePath = outputDir + "/adapter.list"
String? contamsOutputFilePath = outputDir + "/contaminations.list"
Boolean? skipContams
File? knownContamFile
File? knownAdapterFile
Float? adapterCutoff
Boolean? outputAsFasta
command {
set -e
mkdir -p ${outputDir}
java -jar ${extractAdaptersFastqcJar} \
--inputFile ${inputFile} \
${"--adapterOutputFile " + adapterOutputFilePath } \
...
...
@@ -82,7 +85,9 @@ task extractAdapters {
}
output {
File? adapterOutputFile = adapterOutputFilePath
File? contamsOutputFile = contamsOutputFilePath
File adapterOutputFile = select_first([adapterOutputFilePath])
File contamsOutputFile = select_first([contamsOutputFilePath])
Array[String] adapterList = read_lines(select_first([adapterOutputFilePath]))
Array[String] contamsList = read_lines(select_first([contamsOutputFilePath]))
}
}
\ No newline at end of file
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