Fiona-and-Cake
Fiona-and-Cake
>>> import multiprocessing >>> processes = multiprocessing.cpu_count() >>> >>> if not os.path.exists('example.npz'): ... ip_array = ip_signal.array( ... tsses_1kb, ... bins=100, ... processes=processes) ... input_array = input_signal.array( ... tsses_1kb, ... bins=100,...
Whoops! Good point. Same thing happens with just one though. >>> ip_array = ip_signal.array( ... tsses_1kb, ... bins=100, ... processes=1) Traceback (most recent call last): File "", line 4, in...
>>> if not os.path.exists('example.npz'): ... ip_array = ip_signal.array( ... tsses_1kb, ... bins=100, ... processes=None) ... Traceback (most recent call last): File "", line 5, in File "/Users/nakadalab/miniconda/lib/python2.7/site-packages/metaseq/_genomic_signal.py", line 124, in...
Regenerating it seems to have worked! Thank you so much :) I'm still not entirely sure what went wrong the first time I made the tsses_1kb file though.