Skip to content
Snippets Groups Projects
Commit 17a98ceb authored by Laura Urbanska's avatar Laura Urbanska
Browse files

added script to write gtf output

parent 0d06956b
No related branches found
No related tags found
No related merge requests found
'''
This function writes keeps the representative transcripts from the original input file (gtf)
and writes them to an output.
(The representative transcripts being listed in a csv file)
'''
def gtf_representative_transcripts(original_gtf, transcripts):
transcript = pd.read_csv(transcripts)
representative_transcripts = []
with open (original_gtf, 'r') as file:
for id in transcript['id']:
for line in file:
if id in line:
representative_transcripts.append(line)
with open ('output.gtf', 'w') as outputfile:
outputfile.write(representative_transcripts)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment