Skip to content

Commit

Permalink
Fixes to masks
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjunnebo committed Oct 7, 2024
1 parent a0ec98d commit ec28bb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions taca/element/Element_Runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,16 +517,16 @@ def make_demux_manifests(
)

recipe_split = recipe.split("-")
R1Mask = f"R1:Y{recipe_split[0]}N{self.cycles['R1']}"
R2Mask = f"R2:Y{recipe_split[3]}N{self.cycles['R2']}"
R1Mask = f"R1:Y{recipe_split[0]}"
R2Mask = f"R2:Y{recipe_split[3]}"

settings_section = "\n".join(
[
"[SETTINGS]",
"SettingName, Value",
f"R1FastqMask, {R1Mask}",
f"I1Mask, {I1Mask}",
f"I2Mask, {I2Mask}"
f"I2Mask, {I2Mask}",
f"R2FastqMask, {R2Mask}",
]
)
Expand Down

0 comments on commit ec28bb7

Please sign in to comment.