awk -f linearizefasta.awk < input.faor
awk '/^>/ {printf("%s%s\t",(N>0?"\n":""),$0);N++;next;} {printf("%s",$0);} END {printf("\n");}' < input.fa| #!/usr/bin/env python | |
| """ | |
| GTF.py | |
| Kamil Slowikowski | |
| December 24, 2013 | |
| Read GFF/GTF files. Works with gzip compressed files and pandas. | |
| http://useast.ensembl.org/info/website/upload/gff.html |