Skip to content

Commit

Permalink
chore: fix miniwdl check
Browse files Browse the repository at this point in the history
  • Loading branch information
adthrasher committed Oct 28, 2024
1 parent 275c5d8 commit e837f8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions workflows/hic/hicpro-core.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ workflow hicpro_core {
bowtie_db_tar_gz,
read_one_fastq_gz = pair.left,
prefix = fq_prefix + ".R1_global",
rg = tuple.right,
read_group = tuple.right,
write_unpaired_unaligned = true,
seed_substring = 30, # -L
score_min = {
Expand All @@ -174,7 +174,7 @@ workflow hicpro_core {
bowtie_db_tar_gz,
read_one_fastq_gz = pair.right,
prefix = fq_prefix + ".R2_global",
rg = tuple.right,
read_group = tuple.right,
write_unpaired_unaligned = true,
seed_substring = 30, # -L
score_min = {
Expand Down Expand Up @@ -234,7 +234,7 @@ workflow hicpro_core {
bowtie_db_tar_gz,
read_one_fastq_gz = trim_read1.cutsite_trimmed_fastq,
prefix = fq_prefix + ".R1_local",
rg = tuple.right,
read_group = tuple.right,
seed_substring = 20, # -L
score_min = {
"function_type": "L",
Expand All @@ -258,7 +258,7 @@ workflow hicpro_core {
bowtie_db_tar_gz,
read_one_fastq_gz = trim_read2.cutsite_trimmed_fastq,
prefix = fq_prefix + ".R2_local",
rg = tuple.right,
read_group = tuple.right,
seed_substring = 20, # -L
score_min = {
"function_type": "L",
Expand Down

0 comments on commit e837f8a

Please sign in to comment.