Skip to content

Commit

Permalink
Teste_14: Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreRico committed Oct 21, 2024
1 parent f92235b commit b53c41c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipeline/PharmCAT_Pipeline.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ task pipeline_task {
vcf_file="~{vcf_file}"

# option 1: User add on VCF or TSV file in the vcf_file input
if [[ -n ~{vcf_file} && -f ~{vcf_file} ]]; then
if [[ -n "$vcf_file" && -f "$vcf_file" ]]; then
# if [[ -n ~{vcf_file} && -f ~{vcf_file} ]]; then
# mkdir -p data
cp ~{vcf_file} wf/data
echo "Processing list of VCF files as a single block from: ~{vcf_file}" >> $log_file
Expand Down

0 comments on commit b53c41c

Please sign in to comment.