3UTR / DaPars2

Dynamics analysis of Alternative PolyAdenylation from RNA-seq
GNU General Public License v2.0
47 stars 22 forks source link

The directory of output was wrong #11

Closed Joey-xty closed 2 years ago

Joey-xty commented 2 years ago

In Dapars2_Multi_Sample.py, the line 116 "output_directory = outputdirectory.strip('/') + '' + curr_processing_chr + '/'" will also strip the header "/" in output directory, and caused to create new folder in other path. It should be correct as "output_directory = outputdirectory.rstrip('/') + '' + curr_processing_chr + '/'", rstrip will only strip the tail "/". It was same issue in DaPars2_Multi_Sample_Multi_Chr.py.

3UTR commented 2 years ago

We have now fixed this issue. Thanks @Joey-xty