-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from logsdon-lab/feature/chrom-specific-params
feat: Chromosome specific parameters
- Loading branch information
Showing
8 changed files
with
109 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"chr8": { | ||
"thr_height_perc_valley": 0.25, | ||
"thr_prom_perc_valley": 0.25 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
samples: | ||
CHM13: | ||
fasta: test/data/fa/CHM13_chr8_chr21.fa.gz | ||
regions: test/data/bed/CHM13_cen_500kbp.bed | ||
bam: test/data/bam/CHM13_chr8_chr21.bam | ||
override_chrom_params: test/config/chr8_params.json | ||
# Add plot titles | ||
titles: test/data/bed/titles.tsv | ||
|
||
# Size of the methylation windows to average over | ||
window_size: 5000 | ||
|
||
# Size of ALR repeat stretches to include in search of CDR | ||
alr_threshold: 100000 | ||
|
||
# Distance to merge adjacent CDRs. Can omit. | ||
bp_merge: 1 | ||
|
||
# Threshold percent of the average methylation percentage needed as the minimal height of a valley from the median. | ||
# ex. 0.1 allows valleys with a height from the median equal to 10% of the median. | ||
height_perc_valley_threshold: 0.34 | ||
|
||
prom_perc_valley_threshold: 0.3 | ||
|
||
bp_alr_merge: 1000 | ||
|
||
bp_edge: 500000 | ||
|
||
extend_edges_std: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters