mirror of
https://github.com/exaloop/codon.git
synced 2025-06-03 15:03:52 +08:00
9 lines
218 B
Plaintext
9 lines
218 B
Plaintext
# SeqMap
|
|
# Seq workshop -- Section 1
|
|
# Reads and prints a FASTQ file.
|
|
# Usage: seqc run section1.seq <FASTQ path>
|
|
from sys import argv
|
|
from bio import *
|
|
for record in FASTQ(argv[1]):
|
|
print(record.name, record.seq)
|