Skip to content

Commit

Permalink
code cleanup remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed May 20, 2024
1 parent 0ad049c commit 0621418
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions workflow/scripts/altsplc2vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,13 @@ def main():
# determine type of splicing from file
pattern = re.compile(r'merge_graphs_(\w+)_C[1-3].confirmed.txt.gz')
match = pattern.search(file)
# print(file)
if match:
event_type = match.group(1)

fh = gzip.open(os.path.join(root, file), 'r')
next(fh)
for line in fh:
column = line.decode().rstrip().split('\t')
print(column)

if (event_type == "alt_5prime" or
event_type == "alt_3prime" or
Expand Down

0 comments on commit 0621418

Please sign in to comment.