Skip to content
Snippets Groups Projects
Commit 7c512fbd authored by ffinfo's avatar ffinfo
Browse files

Change names

parent 9f02ca5a
No related branches found
No related tags found
1 merge request!61Switch to structs
...@@ -42,7 +42,7 @@ task BedToIntervalList { ...@@ -42,7 +42,7 @@ task BedToIntervalList {
task CollectMultipleMetrics { task CollectMultipleMetrics {
input { input {
String? preCommand String? preCommand
IndexedBamFile bam IndexedBamFile bamFile
Reference reference Reference reference
String basename String basename
...@@ -72,7 +72,7 @@ task CollectMultipleMetrics { ...@@ -72,7 +72,7 @@ task CollectMultipleMetrics {
~{preCommand} ~{preCommand}
~{toolCommand} \ ~{toolCommand} \
CollectMultipleMetrics \ CollectMultipleMetrics \
I=~{bam.file} \ I=~{bamFile.file} \
R=~{reference.fasta} \ R=~{reference.fasta} \
O=~{basename} \ O=~{basename} \
PROGRAM=null \ PROGRAM=null \
...@@ -116,7 +116,7 @@ task CollectMultipleMetrics { ...@@ -116,7 +116,7 @@ task CollectMultipleMetrics {
task CollectRnaSeqMetrics { task CollectRnaSeqMetrics {
input { input {
String? preCommand String? preCommand
IndexedBamFile bam IndexedBamFile bamFile
File refRefflat File refRefflat
String basename String basename
String strandSpecificity = "NONE" String strandSpecificity = "NONE"
...@@ -137,7 +137,7 @@ task CollectRnaSeqMetrics { ...@@ -137,7 +137,7 @@ task CollectRnaSeqMetrics {
~{preCommand} ~{preCommand}
~{toolCommand} \ ~{toolCommand} \
CollectRnaSeqMetrics \ CollectRnaSeqMetrics \
I=~{bam.file} \ I=~{bamFile.file} \
O=~{basename}.RNA_Metrics \ O=~{basename}.RNA_Metrics \
CHART_OUTPUT=~{basename}.RNA_Metrics.pdf \ CHART_OUTPUT=~{basename}.RNA_Metrics.pdf \
STRAND_SPECIFICITY=~{strandSpecificity} \ STRAND_SPECIFICITY=~{strandSpecificity} \
...@@ -157,7 +157,7 @@ task CollectRnaSeqMetrics { ...@@ -157,7 +157,7 @@ task CollectRnaSeqMetrics {
task CollectTargetedPcrMetrics { task CollectTargetedPcrMetrics {
input { input {
String? preCommand String? preCommand
IndexedBamFile bam IndexedBamFile bamFile
Reference reference Reference reference
File ampliconIntervals File ampliconIntervals
Array[File]+ targetIntervals Array[File]+ targetIntervals
...@@ -179,7 +179,7 @@ task CollectTargetedPcrMetrics { ...@@ -179,7 +179,7 @@ task CollectTargetedPcrMetrics {
~{preCommand} ~{preCommand}
~{toolCommand} \ ~{toolCommand} \
CollectTargetedPcrMetrics \ CollectTargetedPcrMetrics \
I=~{bam.file} \ I=~{bamFile.file} \
R=~{reference.fasta} \ R=~{reference.fasta} \
AMPLICON_INTERVALS=~{ampliconIntervals} \ AMPLICON_INTERVALS=~{ampliconIntervals} \
TARGET_INTERVALS=~{sep=" TARGET_INTERVALS=" targetIntervals} \ TARGET_INTERVALS=~{sep=" TARGET_INTERVALS=" targetIntervals} \
......
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