jyyulab / SJARACNe

Scalable Tool for Gene Network Reverse Engineering
Other
22 stars 16 forks source link

Fixed problem where name of gene could not have spaces #17

Closed jimmyv9 closed 5 years ago

jimmyv9 commented 5 years ago

Names can have spaces if they are the name or description of gene. To circumvent this problem, I changed line 34 in QC_input.py from for word in words: to for word in words[2:]:. This way we ignore the first two elements in every line, given they're just the ID and the gene name.