Skip to content

Commit

Permalink
Fix remove study= prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinM-code authored Nov 26, 2024
1 parent ac57516 commit 693d3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_extract_significant_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def main():
'python',
'/sumstat-data/filters/significant_window_extraction/filter_by_merge.py',
'--in_sumstats', os.path.join(input_dir, file),
'--out_sumstats', os.path.join('/sumstat-data/output/', f"{file.strip('study=')}.parquet"),
'--out_sumstats', os.path.join('/sumstat-data/output/', f"{file.removeprefix('study=')}.parquet"),
'--window', args.window,
'--pval', args.pval,
'--data_type', args.data_type
Expand Down

0 comments on commit 693d3b2

Please sign in to comment.