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
5e572ffc
Commit
5e572ffc
authored
4 years ago
by
JasperBoom
Browse files
Options
Downloads
Patches
Plain Diff
Fix some input naming.
parent
7e8c833e
Branches
BIOWDL-450
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
transcriptclean.wdl
+5
-5
5 additions, 5 deletions
transcriptclean.wdl
with
5 additions
and
5 deletions
transcriptclean.wdl
+
5
−
5
View file @
5e572ffc
...
...
@@ -68,7 +68,7 @@ task GetSJsFromGtf {
task GetTranscriptCleanStats {
input {
File
transcriptCleanSamFile
File
inputSam
String outputPrefix
String memory = "4G"
...
...
@@ -80,7 +80,7 @@ task GetTranscriptCleanStats {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
get_TranscriptClean_stats \
~{
transcriptCleanSamFile
} \
~{
inputSam
} \
~{outputPrefix}
}
...
...
@@ -96,7 +96,7 @@ task GetTranscriptCleanStats {
parameter_meta {
# inputs
transcriptCleanSamFile
: {description: "Output sam file from transcriptclean", category: "required"}
inputSam
: {description: "Output sam file from transcriptclean", category: "required"}
outputPrefix: {description: "Output directory path + output file prefix.", category: "required"}
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"}
...
...
@@ -157,7 +157,7 @@ task TranscriptClean {
output {
File fastaFile = outputPrefix + "_clean.fa"
File logFile = outputPrefix + "_clean.log"
File
samFile
= outputPrefix + "_clean.sam"
File
outputSam
= outputPrefix + "_clean.sam"
File logFileTE = outputPrefix + "_clean.TE.log"
}
...
...
@@ -194,7 +194,7 @@ task TranscriptClean {
# outputs
fastaFile: {description: "Fasta file containing corrected reads."}
logFile: {description: "Log file of transcriptclean run."}
samFile
: {description: "Sam file containing corrected aligned reads."}
outputSam
: {description: "Sam file containing corrected aligned reads."}
logFileTE: {description: "TE log file of transcriptclean run."}
}
}
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