File: biopython_fasta_sequence_iterate.py

package info (click to toggle)
pyfastx 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,336 kB
  • sloc: ansic: 4,826; python: 1,816; sh: 505; perl: 66; makefile: 31
file content (5 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (3)
1
2
3
4
5
import sys
from Bio import SeqIO

for seq in SeqIO.parse(sys.argv[1], 'fasta'):
	_ = seq.seq