This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Usage: python fasta-stats.py <filename> | |
# This script takes a fasta file and returns a tab delimited file which gives | |
# the gc content and length for each sequence in the original fasta | |
## Import statements | |
import sys |