Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
akahles committed Feb 6, 2023
1 parent e266172 commit b683178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spladder/reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ def _store_hdf5(fname, read_matrix, introns_m, introns_p):
chr_len = [int(x['LN']) for x in parse_header(infile.text)['SQ'] if x['SN'] == chr_name]
if len(chr_len) == 0:
print('No information found for contig %s' % (chr_name), file=sys.stdout)
read_matrix = scipy.sparse.coo_matrix(np.zeros((0, 1))
read_matrix = scipy.sparse.coo_matrix(np.zeros((0, 1)))
introns_m = np.zeros((0, 3), dtype='uint32')
introns_p = np.zeros((0, 3), dtype='uint32')
if usetmp:
Expand Down

0 comments on commit b683178

Please sign in to comment.