You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: wdl/Module04b.wdl
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,10 @@ workflow Module04b {
24
24
Stringcohort # Cohort name or project prefix for all cohort-level outputs
25
25
Filecontig_list
26
26
Array[File] regeno_coverage_medians # one file per batch
27
-
Floatregeno_max_allele_freq = 0.01
28
-
Intregeno_allele_count_threshold = 3
27
+
Floatregeno_max_allele_freq = 0.01 # Rare variant filter for regenotyping candidates: must be < AF threshold (this parameter) or <= AC threshold (below)
28
+
Intregeno_allele_count_threshold = 3 # Rare variant filter for regenotyping candidates: must be < AF threshold (above) or <= AC threshold (this parameter)
29
+
Intmin_var_per_sample_outlier_threshold = 3 # Threshold below which regeno SV count per sample should not be considered an outlier (need when counts are sparse)
30
+
Floatregeno_sample_overlap = 0.7 # Minimum sample overlap required between raw and regenotyped calls
0 commit comments