Skip to content

Commit

Permalink
Remove redundant prints
Browse files Browse the repository at this point in the history
  • Loading branch information
RSWilson1 committed Mar 5, 2024
1 parent 98c7c46 commit 72b4982
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions gene_annotation2bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,6 @@ def parse_gff(gff_file):
gff_df = gff_df.astype(dtype_mapping)
# Filter GFF DataFrame to select entries with 'NM' type
print("Filtering GFF DataFrame to select entries with 'NM' type")
print(gff_df.head())
print(gff_df.dtypes)

# remove null values from the transcript_id column
gff_df = gff_df.dropna(subset=["transcript_id"])
Expand Down
1 change: 0 additions & 1 deletion tests/test_gene_annotation2bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def test_parse_gff_dtypes(self):
'hgnc_id': 'Int32'}

for col, dtype in expected_dtypes.items():
print(col, dtype, self.test_df[col].dtype.name)
self.assertEqual(self.test_df[col].dtype.name, dtype)

def test_parse_gff_extract_hgnc_id(self):
Expand Down

0 comments on commit 72b4982

Please sign in to comment.