Skip to content

Commit

Permalink
Fix bug with variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Aug 14, 2023
1 parent 4dfe778 commit d94e9eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ version 1.0
set -e

# Obtain sequence fasta file for each CNV interval
for i in `cat ~{cnv_event_chunk} | awk '{print $2}'`; do python3 /blastn/getSeq.py -i ${i} -r test/last-1460/local_reference/Homo_sapiens_assembly38.fasta; done
for i in `cat ~{cnv_event_chunk} | awk '{print $2}'`; do python3 /blastn/getSeq.py -i ${i} -r ~{reference_fasta}; done
>>>
output {
Array[File] interval_sequence_fasta = glob("*_seq.fasta")
Expand Down

0 comments on commit d94e9eb

Please sign in to comment.