Skip to content

Commit

Permalink
Merge pull request #17 from broadinstitute/as_minor_clean_up
Browse files Browse the repository at this point in the history
Removed a print statement
  • Loading branch information
asmirnov239 authored Apr 6, 2022
2 parents 137a247 + 1f1721a commit 186b09a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions evaluation_code/pygcnveval/pygcnveval/callset.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ def _construct_sample_to_pyrange_map(callset_pyrange: pr.PyRanges, sample_set: F
for sample in sample_set:
events_df = pd.DataFrame(sample_to_events_list_map[sample])
events_df = events_df.astype(Callset.CALLSET_COLUMN_TYPES)
print(events_df)
sample_to_pyrange_map[sample] = pr.PyRanges(events_df)
return sample_to_pyrange_map

Expand Down Expand Up @@ -487,7 +486,6 @@ def _get_attribute_list(call, num_exon, qs, sf, hg38_str):
joint_events_df.astype(Callset.JOINT_CALLSET_COLUMN_TYPES)
joint_callset_pr = pr.PyRanges(joint_events_df)

#sample_to_pyrange_map = {s: None for s in joint_sample_list}
sample_to_pyrange_map = Callset._construct_sample_to_pyrange_map(joint_callset_pr, frozenset(joint_sample_list))

return cls(sample_to_pyrange_map, joint_callset_pr, interval_collection)
Expand Down

0 comments on commit 186b09a

Please sign in to comment.