Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## XAVIER development version

- Fixed syntax warning. (#184, @kelly-sovacool)

## XAVIER 3.2.2

- Fixed a bug where tumor-only and unpaired runs could fail during Snakefile parsing (#174, @samarth8392)
Expand Down
2 changes: 1 addition & 1 deletion src/xavier/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def get_nends(ifiles):
nends = {} # keep count of R1 and R2 for each sample
for file in ifiles:
# Split sample name on file extension
sample = re.split("\.R[12]\.fastq\.gz", os.path.basename(file))[0]
sample = re.split(r"\.R[12]\.fastq\.gz", os.path.basename(file))[0]
if sample not in nends:
nends[sample] = 0

Expand Down
Loading