Skip to content

Commit

Permalink
prefix properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Soto committed Oct 1, 2024
1 parent 1f3dc74 commit a09e8ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ workflow CreateImputationRefPanelBeagle {

if (create_interval_lists || create_bed_files){
scatter (i in range(num_chunks)) {
String custom_basename_with_chr_and_chunk = output_basename + chromosome + ".chunk_" + i
String custom_basename_with_chr_and_chunk = output_basename + "." + chromosome + ".chunk_" + i

Int start = (i * chunkLength) + 1
Int end = if (CalculateChromosomeLength.chrom_length < ((i + 1) * chunkLength)) then CalculateChromosomeLength.chrom_length else ((i + 1) * chunkLength)
Expand Down

0 comments on commit a09e8ba

Please sign in to comment.