Skip to content

Commit

Permalink
Update task_utilities.wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
HNHalstead committed Feb 14, 2024
1 parent 8af73f0 commit bbb45d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tasks/utilities/task_utilities.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ task split_by_clade {
}
command <<<
# date and version control
date | scatter DATE
date | tee DATE
python3<<CODE
import pandas as pd
Expand Down Expand Up @@ -384,7 +384,7 @@ task choose_clade_filter {
# Data sorting step go to get around terra issue
date | scatter DATE
date | tee DATE
mkdir files_dir
for x in ~{sep=' ' clade_list}
do
Expand Down Expand Up @@ -413,7 +413,7 @@ task generate_none {
}
command <<<
date | scatter DATE
date | tee DATE
touch none.txt
>>>
output {
Expand Down Expand Up @@ -441,7 +441,7 @@ task concat_fastq {
}
command <<<
date | scatter DATE
date | tee DATE
cat ~{read1_cleaned} ~{read2_cleaned}>~{samplename}_total_reads.fastq
>>>
output {
Expand All @@ -466,9 +466,9 @@ task run_note {
}
command <<<
date | scatter DATE
date | tee DATE
touch none.txt
echo "~{note}" | scatter PIPELINE_NOTE
echo "~{note}" | tee PIPELINE_NOTE
>>>
output {
String date = read_string("DATE")
Expand Down

0 comments on commit bbb45d2

Please sign in to comment.