Skip to content

Commit

Permalink
taking out print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiernan committed Jan 16, 2025
1 parent 8ba9e6d commit 172893e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ def add_gene_entries(gtf_file):
genes = {}

# First collect ALL features for each gene
print("Colleting features of gene")
for line in open(gtf_file):
fields = line.strip().split('\t')
if len(fields) != 9:
Expand Down Expand Up @@ -65,10 +64,9 @@ def add_gene_entries(gtf_file):



print("Setting up header")
with open(gtf_file) as f:

# First print the new header
# First print the new header
new_header = """#gtf-version 2.2
#!genome-build mCalJa1.2.pat.X
#!genome-build-accession NCBI_Assembly:GCF_011100555.1
Expand Down

0 comments on commit 172893e

Please sign in to comment.