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
358ff942
Unverified
Commit
358ff942
authored
5 years ago
by
Cats
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #175 from biowdl/BIOWDL-319
make memory configurable in fastqc
parents
824802a9
5de03804
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
fastqc.wdl
+20
-64
20 additions, 64 deletions
fastqc.wdl
with
21 additions
and
64 deletions
CHANGELOG.md
+
1
−
0
View file @
358ff942
...
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 2.2.0-dev
---------------------------
+
Add
`memory`
input to fastqc task.
+
Centrifuge: Fix issue where centrifuge would fail on incorrect paths.
+
Added GATK CNV calling tasks:
+
AnnotateIntervals
...
...
This diff is collapsed.
Click to expand it.
fastqc.wdl
+
20
−
64
View file @
358ff942
...
...
@@ -18,6 +18,7 @@ task Fastqc {
String? dir
Int threads = 1
String memory = "4G"
String dockerImage = "quay.io/biocontainers/fastqc:0.11.7--4"
Array[File]? NoneArray
File? NoneFile
...
...
@@ -61,74 +62,29 @@ task Fastqc {
runtime {
cpu: threads
memory: memory
docker: dockerImage
}
parameter_meta {
seqFile: {
description: "A fastq file.",
category: "required"
}
outdirPath: {
description: "The path to write the output to",
catgory: "required"
}
casava: {
description: "Equivalent to fastqc's --casava flag.",
category: "advanced"
}
nano: {
description: "Equivalent to fastqc's --nano flag.",
category: "advanced"
}
noFilter: {
description: "Equivalent to fastqc's --nofilter flag.",
category: "advanced"
}
extract: {
description: "Equivalent to fastqc's --extract flag.",
category: "advanced"
}
nogroup: {
description: "Equivalent to fastqc's --nogroup flag.",
category: "advanced"
}
minLength: {
description: "Equivalent to fastqc's --min_length option.",
category: "advanced"
}
format: {
description: "Equivalent to fastqc's --format option.",
category: "advanced"
}
contaminants: {
description: "Equivalent to fastqc's --contaminants option.",
category: "advanced"
}
adapters: {
description: "Equivalent to fastqc's --adapters option.",
category: "advanced"
}
limits: {
description: "Equivalent to fastqc's --limits option.",
category: "advanced"
}
kmers: {
description: "Equivalent to fastqc's --kmers option.",
category: "advanced"
}
dir: {
description: "Equivalent to fastqc's --dir option.",
category: "advanced"
}
threads: {
description: "The number of cores to use.",
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"
}
seqFile: {description: "A fastq file.", category: "required"}
outdirPath: {description: "The path to write the output to", catgory: "required"}
casava: {description: "Equivalent to fastqc's --casava flag.", category: "advanced"}
nano: {description: "Equivalent to fastqc's --nano flag.", category: "advanced"}
noFilter: {description: "Equivalent to fastqc's --nofilter flag.", category: "advanced"}
extract: {description: "Equivalent to fastqc's --extract flag.", category: "advanced"}
nogroup: {description: "Equivalent to fastqc's --nogroup flag.", category: "advanced"}
minLength: {description: "Equivalent to fastqc's --min_length option.", category: "advanced"}
format: {description: "Equivalent to fastqc's --format option.", category: "advanced"}
contaminants: {description: "Equivalent to fastqc's --contaminants option.", category: "advanced"}
adapters: {description: "Equivalent to fastqc's --adapters option.", category: "advanced"}
limits: {description: "Equivalent to fastqc's --limits option.", category: "advanced"}
kmers: {description: "Equivalent to fastqc's --kmers option.", category: "advanced"}
dir: {description: "Equivalent to fastqc's --dir option.", category: "advanced"}
threads: {description: "The number of cores to use.", category: "advanced"}
memory: {description: "The amount of memory this job will use.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
meta {
...
...
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