simon-anders / htseq

HTSeq is a Python library to facilitate processing and analysis of data from high-throughput sequencing (HTS) experiments.
https://htseq.readthedocs.io/en/release_0.11.1/
GNU General Public License v3.0
122 stars 77 forks source link

Do not automatically add "[part]" or "revcomp_of_" to name when slicing a segment or using get_reverse_complement() #58

Closed woodword closed 4 years ago

woodword commented 6 years ago

When I try to slice a segment or use get_reverse_complement() in HTSeq, it will add an unnecessary "[part]" or "revcompof" to the name and I have to write extra code to remove them. I don't think this is a practical function.

iosonofabio commented 6 years ago

I added an optional argument in the latest commit: 89f12460eb5bcf7b13478d6e056acd011508106b

Thanks for reporting.