Skip to content

Commit

Permalink
fix to match the new script names
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimens committed Jul 22, 2024
1 parent 9a24ae1 commit 42a39bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bwa: &bwa
- 'src/harpy/bin/bx_stats.py'
- 'src/harpy/bin/count_bx.py'
- 'src/harpy/bin/assign_mi.py'
- 'src/harpy/bin/makeWindows.py'
- 'src/harpy/bin/make_windows.py'
- 'test/fastq/**'
ema: &ema
- *common
Expand All @@ -62,7 +62,7 @@ ema: &ema
- 'src/harpy/reports/BxCount.Rmd'
- 'src/harpy/bin/bx_stats.py'
- 'src/harpy/bin/count_bx.py'
- 'src/harpy/bin/makewindows.py'
- 'src/harpy/bin/make_windows.py'
- 'test/fastq/**'
strobealign: &strobealign
- *common
Expand All @@ -74,23 +74,23 @@ strobealign: &strobealign
- 'src/harpy/bin/assign_mi.py'
- 'src/harpy/bin/bx_stats.py'
- 'src/harpy/bin/count_bx.py'
- 'src/harpy/bin/makewindows.py'
- 'src/harpy/bin/make_windows.py'
- 'test/fastq/**'
mpileup: &mpileup
- *common
- *container
- 'src/harpy/snp.py'
- 'src/harpy/snakefiles/snp-mpileup.smk'
- 'src/harpy/reports/BcftoolsStats.Rmd'
- 'src/harpy/bin/makewindows.py'
- 'src/harpy/bin/make_windows.py'
- 'test/bam/**'
freebayes: &freebayes
- *common
- *container
- 'src/harpy/snp.py'
- 'src/harpy/snakefiles/snp-freebayes.smk'
- 'src/harpy/reports/BcftoolsStats.Rmd'
- 'src/harpy/bin/makewindows.py'
- 'src/harpy/bin/make_windows.py'
- 'test/bam/**'
impute: &impute
- *common
Expand Down
4 changes: 2 additions & 2 deletions src/harpy/snp.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def mpileup(inputs, output_dir, regions, genome, threads, populations, ploidy, e
regtype = validate_regions(regions, genome)
if regtype == "windows":
region = Path(f"{workflowdir}/positions.bed").resolve()
os.system(f"makeWindows.py -m 1 -i {genome} -o {region} -w {regions}")
os.system(f"make_windows.py -m 1 -i {genome} -o {region} -w {regions}")
elif regtype == "region":
region = regions
else:
Expand Down Expand Up @@ -202,7 +202,7 @@ def freebayes(inputs, output_dir, genome, threads, populations, ploidy, regions,
regtype = validate_regions(regions, genome)
if regtype == "windows":
region = Path(f"{workflowdir}/positions.bed").resolve()
os.system(f"makeWindows.py -m 0 -i {genome} -o {region} -w {regions}")
os.system(f"make_windows.py -m 0 -i {genome} -o {region} -w {regions}")
elif regtype == "region":
region = regions
else:
Expand Down

0 comments on commit 42a39bd

Please sign in to comment.