Skip to content

Commit 5501a64

Browse files
authored
Add ppfla (#43)
use proper separator when renaming fastq
1 parent 75e580c commit 5501a64

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

bin/cmo_split_reads

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def chunk(fastq, sample, lines_per_chunk, num_pieces):
88
logger = cmo.util.get_logger()
99
output_prefix = os.path.basename(fastq).split(".", 1)[0] + "."
1010
if(sample != None):
11-
exploded = output_prefix.split(".")
11+
exploded = output_prefix.split("_")
1212
exploded[0]=sample
1313
output_prefix = ".".join(exploded)
1414
while lines_per_chunk % 4 != 0:

cmo/_version.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
# This file is originally generated from Git information by running 'setup.py
33
# version'. Distribution tarballs contain a pre-generated copy of this file.
44

5-
6-
__version__ = '1.5.1'
5+
__version__ = '1.5.2'

0 commit comments

Comments
 (0)