Skip to content

Commit

Permalink
Merge pull request #328 from ces/BGE1
Browse files Browse the repository at this point in the history
add additional autosome specific coverage threshold
  • Loading branch information
dozy committed Oct 25, 2023
2 parents 50974fa + c1791be commit 6f748fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
CHANGES LOG
-----------

- add additional autosome specific coverage threshold to final_output_prep.json

0.37.2
- change bambi i2b command in stage1 analysis to use new boolean version of --nocall-quality flag

Expand Down
5 changes: 2 additions & 3 deletions data/vtlib/final_output_prep.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
{"id":"stats_filter__F0x900","required":"no","default":"0x900"},
{"id":"stats_filter__F0xB00","required":"no","default":"0xB00"},
{"id":"stats_filter__F0xF04","required":"no","default":"0xF04"},
{"id":"stats_filter__cov_threshold","required":"no","default":"15"},
{"id":"bam_stats_executable","required":"no","default":"bam_stats"},
{"id":"bait_regions_file","required":"yes","comment":"regions file for optional bait stats"},
{"id":"target_regions_file","required":"yes","comment":"regions file for optional target regions stats"},
Expand Down Expand Up @@ -411,14 +410,14 @@
"type":"EXEC",
"use_STDIN": true,
"use_STDOUT": true,
"cmd": [ {"subst":"samtools_executable"}, "stats", {"subst":"stats_reference_flag"}, "-p", "-g", {"subst":"stats_filter__cov_threshold"},"-F", {"subst":"stats_filter__F0xF04"},"-t",{"subst":"target_regions_file"},"-" ]
"cmd": [ {"subst":"samtools_executable"}, "stats", {"subst":"stats_reference_flag"}, "-p", "-g", {"subst":"stats_filter__cov_threshold", "required":true, "ifnull":"15"},"-F", {"subst":"stats_filter__F0xF04"},"-t",{"subst":"target_regions_file"},"-" ]
},
{
"id":"samtools_stats_F0xF04_target_autosome",
"type":"EXEC",
"use_STDIN": true,
"use_STDOUT": true,
"cmd": [ {"subst":"samtools_executable"}, "stats", {"subst":"stats_reference_flag"}, "-p", "-g", {"subst":"stats_filter__cov_threshold"},"-F", {"subst":"stats_filter__F0xF04"},"-t",{"subst":"target_autosome_regions_file"},"-" ]
"cmd": [ {"subst":"samtools_executable"}, "stats", {"subst":"stats_reference_flag"}, "-p", "-g", {"subst":"stats_filter__cov_threshold_autosome", "required":true, "ifnull":"15"},"-F", {"subst":"stats_filter__F0xF04"},"-t",{"subst":"target_autosome_regions_file"},"-" ]
},
{
"id":"seqchksum",
Expand Down

0 comments on commit 6f748fc

Please sign in to comment.