Skip to content
Open
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: 1 addition & 1 deletion LR-splitpipe/demultiplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def main():
delete_input = args.delete_input

def format_chunksize(c):
if '**' in c:
if isinstance(c, str) and '**' in c:
i, j = c.split('**')
i = float(i)
j = float(j)
Expand Down
1 change: 1 addition & 0 deletions LR-splitpipe/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def plot_knee_plot(df, oprefix, kind):
linewidth=2)
ax = plt.gca()
ax.set_xscale('log')
ax.set_yscale('log')
ax.set_xlabel('Ranked cells by # UMIs')
ax.set_ylabel('# UMIs (logscale)')
ax.set_title(kind)
Expand Down