Skip to content

Commit 0857a31

Browse files
committed
Fixed UMI string catenation issue
(See #38)
1 parent 27eaaed commit 0857a31

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# The short X.Y version
2828
version = ''
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.4.3'
30+
release = '0.4.4'
3131

3232

3333
# -- General configuration ---------------------------------------------------

docs/content/updates.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
Updates
33
###############
44

5+
========================
6+
v0.4.4
7+
========================
8+
| - Fixed issue with string catenation during UMI fastp call where UMI length was not properly forced to a string
9+
510
========================
611
v0.4.3
712
========================
8-
| - Fixed issue with `metagene` where parallelization overloaded memory and resulted in OOM errors. Fixed by making memory thresholding slightly more strict.
13+
| - Fixed issue with `metagene` where parallelization overloaded memory and resulted in OOM errors. Fixed by making memory thresholding slightly more strict.
914
1015
========================
1116
v0.4.2

xpresspipe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
this program. If not, see <https://www.gnu.org/licenses/>.
2020
"""
2121

22-
__version__ = '0.4.3'
22+
__version__ = '0.4.4'
2323

2424
from .__main__ import *
2525
from .align import *

xpresspipe/trim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def run_trim(
186186
if str(args_dict['umi_location']).lower() != 'none':
187187
args_dict['umi'] = str(args_dict['umi']) + ' -U --umi_prefix UMI --umi_loc ' + str(args_dict['umi_location'])
188188
if str(args_dict['umi_length']).lower() != 'none':
189-
args_dict['umi'] = str(args_dict['umi']) + ' --umi_len ' + args_dict['umi_length']
189+
args_dict['umi'] = str(args_dict['umi']) + ' --umi_len ' + str(args_dict['umi_length'])
190190
else:
191191
args_dict['umi'] = ''
192192

0 commit comments

Comments
 (0)