Skip to content

Commit 7719f55

Browse files
committed
tiny fix
1 parent e6f7307 commit 7719f55

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/stats_wrapper.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,14 @@
1010
'tag',
1111
help="Variant tag parameter used to run RegTools.",
1212
)
13-
input_parser.add_argument(
14-
'cohort_directory',
15-
help="Path to directory containing cohort files.",
16-
)
1713

1814
args = input_parser.parse_args()
1915

2016
tag = args.tag
21-
cohort_dir = args.cohort_directory
2217

2318
lines_per_file = 50000
2419
smallfile = None
25-
with open(f'{cohort_dir}/all_splicing_variants_{tag}.bed', 'r') as bigfile:
20+
with open(f'all_splicing_variants_{tag}.bed', 'r') as bigfile:
2621
for lineno, line in enumerate(bigfile):
2722
if lineno % lines_per_file == 0:
2823
if smallfile:

0 commit comments

Comments
 (0)