Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ Forgo the use of FDR peak calling and instead call peaks for regions with at lea
```
min_per_acc_peak = 0.25
```
Apply a percent actuation filter on top of the FDR peak calling. Default is `0.0` for no filter.
Apply a percent actuation filter on top of the FDR peak calling. Default is `0.10`; set to `0.0` for no filter.
```
min_frac_accessible: 0.0
min_frac_accessible: 0.10
```
Process only chromosomes matching this regular expression:
```
Expand Down
2 changes: 1 addition & 1 deletion workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if MIN_PER_ACC_PEAK is None:
MIN_PER_ACC_PEAK = 0.0
else:
MAX_PEAK_FDR = 1.0
MIN_FRAC_ACCESSIBLE = config.get("min_frac_accessible", 0)
MIN_FRAC_ACCESSIBLE = config.get("min_frac_accessible", 0.10)

# data filtering
FILTER_FLAG = config.get("samtools-filter-flag", "260") # 2308
Expand Down
Loading