Skip to content

Commit

Permalink
Merge pull request #55 from lpantano/devel
Browse files Browse the repository at this point in the history
update main with umi error fix
  • Loading branch information
lpantano authored May 3, 2022
2 parents e4ef358 + 5161bdf commit cc362b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- 1.2.9

* Fix bug where UMI is mistakenly detected in read names containing "ILLUMINA"

- 1.2.8

* Fix bug when detecting the end of the cluster due to big gaps in biopython function
Expand Down
2 changes: 1 addition & 1 deletion seqcluster/libs/fastq.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def collapse(in_file):
line = handle.readline()
while line:
if line.startswith("@"):
if line.find("UMI") > -1:
if line.find("UMI_") > -1:
logger.info("Find UMI tags in read names, collapsing by UMI.")
return collapse_umi(in_file)
seq = handle.readline().strip()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def readme():


setup(name='seqcluster',
version='1.2.8',
version='1.2.9',
description='Small RNA-seq pipeline',
long_description=readme(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit cc362b6

Please sign in to comment.