open2c / pairtools

Extract 3D contacts (.pairs) from sequencing alignments
MIT License
104 stars 32 forks source link

use line.strip to avoid bugs #47

Closed sergpolly closed 7 years ago

sergpolly commented 7 years ago

line[:-1] is bug-prone, replace with line.strip() or line.rstrip()