Skip to content
Snippets Groups Projects

Merge testing into master

Merged van den Berg requested to merge testing into devel
All threads resolved!
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 3c789431
    Update min-depth to integer · 3c789431
    van den Berg authored
    In the VCF files generated by GATK, DP is an integer, while the GQ field
    holds a float.
    
     ##FORMAT=<ID=DP,Number=1,Type=Integer
     ##FORMAT=<ID=GQ,Number=1,Type=Float
+ 1
1
@@ -39,7 +39,7 @@ from .gcoverage import RefRecord, region_coverages
required=False)
@click.option("-mq", "--min-qual", type=float,
help="Minimum quality of variants to consider", default=30)
@click.option("-md", "--min-depth", type=float,
@click.option("-md", "--min-depth", type=int,
help="Minimum depth of variants to consider", default=0)
def evaluate_cli(call_vcf, positive_vcf, call_samples, positive_samples,
min_qual, min_depth, stats, discordant_vcf):
Loading