Skip to content
Snippets Groups Projects
Commit 743acb0b authored by JasperBoom's avatar JasperBoom
Browse files

Fix memory values.

parent 24a6f110
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ that users understand how the changes affect the new version. ...@@ -10,6 +10,7 @@ that users understand how the changes affect the new version.
version 5.0.0-dev version 5.0.0-dev
--------------------------- ---------------------------
+ Add memory values to GffCompare, GffRead and CPAT.
+ GffCompare: Make the `referenceAnnotation` input optional. + GffCompare: Make the `referenceAnnotation` input optional.
+ Stringtie: Add the `minimumCoverage` input. + Stringtie: Add the `minimumCoverage` input.
+ UMI-tools: update default dockerImage to use umitools v1.1.1 with correct samtools version (1.10) + UMI-tools: update default dockerImage to use umitools v1.1.1 with correct samtools version (1.10)
......
...@@ -34,6 +34,7 @@ task CPAT { ...@@ -34,6 +34,7 @@ task CPAT {
Array[String]? startCodons Array[String]? startCodons
Array[String]? stopCodons Array[String]? stopCodons
String memory = "4G"
Int timeMinutes = 10 + ceil(size(gene, "G") * 30) Int timeMinutes = 10 + ceil(size(gene, "G") * 30)
String dockerImage = "biocontainers/cpat:v1.2.4_cv1" String dockerImage = "biocontainers/cpat:v1.2.4_cv1"
} }
...@@ -60,8 +61,9 @@ task CPAT { ...@@ -60,8 +61,9 @@ task CPAT {
} }
runtime { runtime {
docker: dockerImage memory: memory
time_minutes: timeMinutes time_minutes: timeMinutes
docker: dockerImage
} }
parameter_meta { parameter_meta {
...@@ -74,6 +76,7 @@ task CPAT { ...@@ -74,6 +76,7 @@ task CPAT {
referenceGenomeIndex: {description: "The index of the reference. Should be added as input if CPAT should not index the reference genome.", category: "advanced"} referenceGenomeIndex: {description: "The index of the reference. Should be added as input if CPAT should not index the reference genome.", category: "advanced"}
startCodons: {description: "Equivalent to CPAT's `--start` option.", category: "advanced"} startCodons: {description: "Equivalent to CPAT's `--start` option.", category: "advanced"}
stopCodons: {description: "Equivalent to CPAT's `--stop` option.", category: "advanced"} stopCodons: {description: "Equivalent to CPAT's `--stop` option.", category: "advanced"}
memory: {description: "The amount of memory available to the job.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"} timeMinutes: {description: "The maximum amount of time the job will run in minutes.", 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"} 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"}
......
...@@ -46,6 +46,7 @@ task GffCompare { ...@@ -46,6 +46,7 @@ task GffCompare {
Int? maxDistanceGroupingTranscriptStartSites Int? maxDistanceGroupingTranscriptStartSites
String? namePrefix String? namePrefix
String memory = "4G"
Int timeMinutes = 1 + ceil(size(inputGtfFiles, "G") * 30) Int timeMinutes = 1 + ceil(size(inputGtfFiles, "G") * 30)
String dockerImage = "quay.io/biocontainers/gffcompare:0.10.6--h2d50403_0" String dockerImage = "quay.io/biocontainers/gffcompare:0.10.6--h2d50403_0"
...@@ -114,6 +115,7 @@ task GffCompare { ...@@ -114,6 +115,7 @@ task GffCompare {
} }
runtime { runtime {
memory: memory
time_minutes: timeMinutes time_minutes: timeMinutes
docker: dockerImage docker: dockerImage
} }
...@@ -140,6 +142,7 @@ task GffCompare { ...@@ -140,6 +142,7 @@ task GffCompare {
maxDistanceFreeEndsTerminalExons: {description: "Equivalent to gffcompare's `-e` option.", category: "advanced"} maxDistanceFreeEndsTerminalExons: {description: "Equivalent to gffcompare's `-e` option.", category: "advanced"}
maxDistanceGroupingTranscriptStartSites: {description: "Equivalent to gffcompare's `-d` option.", category: "advanced"} maxDistanceGroupingTranscriptStartSites: {description: "Equivalent to gffcompare's `-d` option.", category: "advanced"}
namePrefix: {description: "Equivalent to gffcompare's `-p` option.", category: "advanced"} namePrefix: {description: "Equivalent to gffcompare's `-p` option.", category: "advanced"}
memory: {description: "The amount of memory available to the job.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"} timeMinutes: {description: "The maximum amount of time the job will run in minutes.", 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"} 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"}
......
...@@ -32,6 +32,7 @@ task GffRead { ...@@ -32,6 +32,7 @@ task GffRead {
String? proteinFastaPath String? proteinFastaPath
String? filteredGffPath String? filteredGffPath
String memory = "4G"
Int timeMinutes = 1 + ceil(size(inputGff, "G") * 10) Int timeMinutes = 1 + ceil(size(inputGff, "G") * 10)
String dockerImage = "quay.io/biocontainers/gffread:0.9.12--0" String dockerImage = "quay.io/biocontainers/gffread:0.9.12--0"
} }
...@@ -64,6 +65,7 @@ task GffRead { ...@@ -64,6 +65,7 @@ task GffRead {
} }
runtime { runtime {
memory: memory
time_minutes: timeMinutes time_minutes: timeMinutes
docker: dockerImage docker: dockerImage
} }
...@@ -78,6 +80,7 @@ task GffRead { ...@@ -78,6 +80,7 @@ task GffRead {
CDSFastaPath: {description: "The location the CDS fasta should be written to.", category: "advanced"} CDSFastaPath: {description: "The location the CDS fasta should be written to.", category: "advanced"}
proteinFastaPath: {description: "The location the protein fasta should be written to.", category: "advanced"} proteinFastaPath: {description: "The location the protein fasta should be written to.", category: "advanced"}
filteredGffPath: {description: "The location the filtered GFF should be written to.", category: "advanced"} filteredGffPath: {description: "The location the filtered GFF should be written to.", category: "advanced"}
memory: {description: "The amount of memory available to the job.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"} timeMinutes: {description: "The maximum amount of time the job will run in minutes.", 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"} 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"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment