Skip to content

Commit

Permalink
fai
Browse files Browse the repository at this point in the history
  • Loading branch information
shadizaheri committed Sep 10, 2024
1 parent 889c1fd commit b2c0836
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions wdl/pipelines/PacBio/Utility/IGV_HaplotypeViz_bai_try.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ workflow IGVScreenshotWorkflow {
File alignments_bai # BAM index for total alignments
File bed_file # BED file with regions
File fasta_file # Reference FASTA file
File fasta_fai # FAI index for the FASTA file
String sample_name # Sample name to use in filenames
Int image_height = 500
Int memory_mb = 4000
Expand All @@ -28,6 +29,7 @@ workflow IGVScreenshotWorkflow {
alignments_bai = alignments_bai,
bed_file = bed_file,
fasta_file = fasta_file,
fasta_fai = fasta_fai,
sample_name = sample_name,
image_height = image_height,
memory_mb = memory_mb,
Expand All @@ -50,6 +52,7 @@ task RunIGVScreenshot {
File alignments_bai
File bed_file
File fasta_file
File fasta_fai # FAI index for the FASTA file
String sample_name
Int image_height
Int memory_mb
Expand All @@ -71,6 +74,7 @@ task RunIGVScreenshot {
-bin /opt/IGV_Linux_2.18.2/igv.sh \
-mem ~{memory_mb} \
--fasta_file ~{fasta_file} \
--fasta_fai ~{fasta_fai} \
--sample_name ~{sample_name}
}

Expand Down

0 comments on commit b2c0836

Please sign in to comment.