#!/usr/bin/env python3

import sys
from bio.seq.base import Gff
def get_tx(infile,key="transcript_id"):
    mygff = Gff(infile)
    for rec in mygff:
        print(rec.attr[key])
get_tx(sys.argv[1])
