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
21165c7b
Commit
21165c7b
authored
5 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
add parameter_meta to gffcompare and gff read
parent
baeef514
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
gffcompare.wdl
+32
-0
32 additions, 0 deletions
gffcompare.wdl
gffread.wdl
+13
-0
13 additions, 0 deletions
gffread.wdl
with
45 additions
and
0 deletions
gffcompare.wdl
+
32
−
0
View file @
21165c7b
...
...
@@ -30,6 +30,7 @@ task GffCompare {
# Issue addressed at https://github.com/openwdl/wdl/pull/263
File? noneFile # This is a wdl workaround. Please do not assign!
}
# This allows for the creation of output directories
String dirPrefix = if defined(outputDir)
then select_first([outputDir]) + "/"
...
...
@@ -91,4 +92,35 @@ task GffCompare {
runtime {
docker: dockerImage
}
parameter_meta {
inputGtfList: {description: "Equivalent to gffcompare's `-i` option.", category: "advanced"}
inputGtfFiles: {description: "The input GTF files.", category: "required"}
referenceAnnotation: {description: "The GTF file to compare with.", category: "required"}
outputDir: {description: "The location the output should be written.", category: "common"}
outPrefix: {description: "The prefix for the output.", category: "advanced"}
genomeSequences: {description: "Equivalent to gffcompare's `-s` option.", category: "advanced"}
maxDistanceFreeEndsTerminalExons: {description: "Equivalent to gffcompare's `-e` option.", category: "advanced"}
maxDistanceGroupingTranscriptStartSites: {description: "Equivalent to gffcompare's `-d` option.", category: "advanced"}
namePrefix: {description: "Equivalent to gffcompare's `-p` option.", category: "advanced"}
C: {description: "Equivalent to gffcompare's `-C` flag.", category: "advanced"}
A: {description: "Equivalent to gffcompare's `-A` flag.", category: "advanced"}
X: {description: "Equivalent to gffcompare's `-X` flag.", category: "advanced"}
K: {description: "Equivalent to gffcompare's `-K` flag.", category: "advanced"}
snCorrection: {description: "Equivalent to gffcompare's `-R` flag.", category: "advanced"}
precisionCorrection: {description: "Equivalent to gffcompare's `-Q` flag.", category: "advanced"}
discardSingleExonTransfragsAndReferenceTranscripts: {description: "Equivalent to gffcompare's `-M` flag.", category: "advanced"}
discardSingleExonReferenceTranscripts: {description: "Equivalent to gffcompare's `-N` flag.", category: "advanced"}
noTmap: {description: "Equivalent to gffcompare's `-T` flag.", category: "advanced"}
verbose: {description: "Equivalent to gffcompare's `-V` flag.", category: "advanced"}
debugMode: {description: "Equivalent to gffcompare's `-D` flag.", 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 {
WDL_AID: {
exclude: ["noneFile"]
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gffread.wdl
+
13
−
0
View file @
21165c7b
...
...
@@ -43,4 +43,17 @@ task GffRead {
runtime {
docker: dockerImage
}
parameter_meta {
inputGff: {description: "The input GFF file.", category: "required"}
genomicSequence: {description: "The genome.", category: "required"}
genomicIndex: {description: "The genome's index.", category: "advanced"}
exonsFastaPath: {description: "The location the exons 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"}
filteredGffPath: {description: "The location the filtered GFF should be written to.", category: "advanced"}
outputGtfFormat: {description: "Equivalent to gffread's `-T` flag.", 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"}
}
}
\ 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