Skip to content

Commit

Permalink
Update task_nullarbor.wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlibuit authored Dec 30, 2022
1 parent 685eae0 commit b8098d0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tasks/task_nullarbor.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ task nullarbor_tsv {
exit 1
fi

# create file of filenames for kSNP3 input
touch nullarbor_input.tsv
# create file of filenames for nullarbor input
touch nullarbor_input.tsv
for index in ${!read1_array[@]}; do
read1=${read1_array[$index]}
read2=${read2_array[$index]}
samplename=${samplename_array[$index]}
read1=${read1_array[$index]}
read2=${read2_array[$index]}
samplename=${samplename_array[$index]}

echo -e "${samplename}\t${read1}\t${read2}" >> nullarbor_input.tsv
done
echo -e "${samplename}\t${read1}\t${read2}" >> nullarbor_input.tsv
done
# Run Nullarbor on the input assembly with the --all flag
nullarbor.pl \
--name ~{run_name} \
Expand Down Expand Up @@ -101,4 +101,4 @@ task nullarbor_tsv {
disks: "local-disk 500 SSD"
preemptible: 0
}
}
}

0 comments on commit b8098d0

Please sign in to comment.