deepvariant_germline
Given one or more pairs of FASTQ files, you can run the germline variant tool to generate BAM, variants, duplicate metrics and recal.
The deepvariant germline tool includes alignment, sorting, and marking as well as the DeepVariant variant caller.
The inputs are BWA-indexed reference files and pair-ended FASTQ files. The outputs of this tool are the following:
Aligned, co-ordinate sorted, duplicated marked BAM
Variants in
vcf
/g.vcf
/g.vcf.gz
format
See the deepvariant_germline Reference section for a detailed listing of all available options.
The following command runs the DeepVariant tool.
# This command assumes all the inputs are in INPUT_DIR and all the outputs go to OUTPUT_DIR.
docker run --rm --gpus all --volume INPUT_DIR:/workdir --volume OUTPUT_DIR:/outputdir \
--workdir /workdir \
nvcr.io/nvidia/clara/clara-parabricks:4.3.2-1 (OR nvcr.io/nvidia/clara/clara-parabricks:4.3.2-1.grace) \
pbrun deepvariant_germline \
--ref /workdir/${REFERENCE_FILE} \
--in-fq /workdir/${INPUT_FASTQ_1} /workdir/${INPUT_FASTQ_2} \
--out-variants /outputdir/${OUTPUT_VCF_FILE}
The commands below are the Google counterpart of the Parabricks command above. The output from these commands will be identical to the output from the above command. See the Output Comparison page for comparing the results.
# Run bwa-mem and pipe output to create sorted BAM
$ bwa mem \
-t 32 \
-K 10000000 \
-R '@RG\tID:sample_rg1\tLB:lib1\tPL:bar\tSM:sample\tPU:sample_rg1' \
<INPUT_DIR>/${REFERENCE_FILE} \
<INPUT_DIR>/${INPUT_FASTQ_1} <INPUT_DIR>/${INPUT_FASTQ_2} | \
gatk SortSam \
--java-options -Xmx30g \
--MAX_RECORDS_IN_RAM 5000000 \
-I /dev/stdin \
-O cpu.bam \
--SORT_ORDER coordinate
# Mark Duplicates
$ gatk MarkDuplicates \
--java-options -Xmx30g \
-I cpu.bam \
-O mark_dups_cpu.bam \
-M metrics.txt
# Run deepvariant
BIN_VERSION="1.6.1"
sudo docker run \
-v "${PWD}":"/input" \
-v "${PWD}/output":"/output" \
-v "${PWD}/Ref":"/reference" \
google/deepvariant:"${BIN_VERSION}" \
/opt/deepvariant/bin/run_deepvariant \
--model_type WGS \
--ref /reference/Homo_sapiens_assembly38.fasta \
--reads /output/mark_dups_cpu.bam \
--output_vcf /output/"${OUTPUT_VCF_FILE}" \
--num_shards $(nproc) \
--make_examples_extra_args "ws_use_window_selector_model=true"
See the DeepVariant Models for additional GPUs section for instructions on downloading and using model files for additional GPUs.
Run the germline pipeline from FASTQ to VCF using a deep neural network analysis.
Input/Output file options
- --ref REF
-
Path to the reference file. (default: None)
Option is required.
- --in-fq [IN_FQ ...]
-
Path to the pair-ended FASTQ files followed by optional read groups with quotes (Example: "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:foo"). The files must be in fastq or fastq.gz format. All sets of inputs should have a read group; otherwise, none should have a read group, and it will be automatically added by the pipeline. This option can be repeated multiple times. Example 1: --in-fq sampleX_1_1.fastq.gz sampleX_1_2.fastq.gz --in-fq sampleX_2_1.fastq.gz sampleX_2_2.fastq.gz. Example 2: --in-fq sampleX_1_1.fastq.gz sampleX_1_2.fastq.gz "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:unit1" --in-fq sampleX_2_1.fastq.gz sampleX_2_2.fastq.gz "@RG\tID:foo2\tLB:lib1\tPL:bar\tSM:sample\tPU:unit2". For the same sample, Read Groups should have the same sample name (SM) and a different ID and PU. (default: None)
- --in-se-fq [IN_SE_FQ ...]
-
Path to the single-ended FASTQ file followed by optional read group with quotes (Example: "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:foo"). The file must be in fastq or fastq.gz format. Either all sets of inputs have a read group, or none should have one, and it will be automatically added by the pipeline. This option can be repeated multiple times. Example 1: --in-se-fq sampleX_1.fastq.gz --in-se-fq sampleX_2.fastq.gz . Example 2: --in-se-fq sampleX_1.fastq.gz "@RG\tID:foo\tLB:lib1\tPL:bar\tSM:sample\tPU:unit1" --in-se-fq sampleX_2.fastq.gz "@RG\tID:foo2\tLB:lib1\tPL:bar\tSM:sample\tPU:unit2" . For the same sample, Read Groups should have the same sample name (SM) and a different ID and PU. (default: None)
- --knownSites KNOWNSITES
-
Path to a known indels file. The file must be in vcf.gz format. This option can be used multiple times. (default: None)
- --interval-file INTERVAL_FILE
-
Path to an interval file in one of these formats: Picard-style (.interval_list or .picard), GATK-style (.list or .intervals), or BED file (.bed). This option can be used multiple times. (default: None)
- --pb-model-file PB_MODEL_FILE
-
Path to a non-default parabricks model file for deepvariant. (default: None)
- --out-recal-file OUT_RECAL_FILE
-
Path of the report file after Base Quality Score Recalibration. (default: None)
- --out-bam OUT_BAM
-
Path of BAM file after Marking Duplicates. (default: None)
Option is required.
- --out-variants OUT_VARIANTS
-
Path of the vcf/gvcf/gvcf.gz file after variant calling. (default: None)
Option is required.
- --out-duplicate-metrics OUT_DUPLICATE_METRICS
-
Path of a duplicate metrics file after Marking Duplicates. (default: None)
- --proposed-variants PROPOSED_VARIANTS
-
Path of the VCF file, which has proposed variants for the make examples stage. (default: None)
Tool Options:
- --max-read-length MAX_READ_LENGTH
-
Maximum read length/size (i.e., sequence length) used for bwa and filtering FASTQ input (default: 480)
- --min-read-length MIN_READ_LENGTH
-
Minimum read length/size (i.e., sequence length) used for bwa and filtering FASTQ input (default: 1)
- -L INTERVAL, --interval INTERVAL
-
Interval within which to call bqsr from the input reads. All intervals will have a padding of 100 to get read records, and overlapping intervals will be combined. Interval files should be passed using the --interval-file option. This option can be used multiple times (e.g. "-L chr1 -L chr2:10000 -L chr3:20000+ -L chr4:10000-20000"). (default: None)
- --bwa-options BWA_OPTIONS
-
Pass supported bwa mem options as one string. The current original bwa mem supported options are: -M, -Y, -C, -T, -B, -U, -L, and -K (e.g. --bwa-options="-M -Y") (default: None)
- --no-warnings
-
Suppress warning messages about system thread and memory usage. (default: None)
- --filter-flag FILTER_FLAG
-
Don't generate SAM entries in the output if the entry's flag's meet this criteria. Criteria: (flag & filter != 0) (default: 0)
- --skip-multiple-hits
-
Filter SAM entries whose length of SA is not 0 (default: None)
- --align-only
-
Generate output BAM after bwa-mem. The output will not be co-ordinate sorted or duplicates will not be marked (default: None)
- --no-markdups
-
Do not perform the Mark Duplicates step. Return BAM after sorting. (default: None)
- --fix-mate
-
Add mate cigar (MC) and mate quality (MQ) tags to the output file. (default: None)
- --markdups-assume-sortorder-queryname
-
Assume the reads are sorted by queryname for Marking Duplicates. This will mark secondary, supplementary, and unmapped reads as duplicates as well. This flag will not impact variant calling while increasing processing times. (default: None)
- --markdups-picard-version-2182
-
Assume marking duplicates to be similar to Picard version 2.18.2. (default: None)
- --monitor-usage
-
Monitor approximate CPU utilization and host memory usage during execution. (default: None)
- --optical-duplicate-pixel-distance OPTICAL_DUPLICATE_PIXEL_DISTANCE
-
The maximum offset between two duplicate clusters in order to consider them optical duplicates. Ignored if --out-duplicate-metrics is not passed. (default: None)
- --read-group-sm READ_GROUP_SM
-
SM tag for read groups in this run. (default: None)
- --read-group-lb READ_GROUP_LB
-
LB tag for read groups in this run. (default: None)
- --read-group-pl READ_GROUP_PL
-
PL tag for read groups in this run. (default: None)
- --read-group-id-prefix READ_GROUP_ID_PREFIX
-
Prefix for the ID and PU tags for read groups in this run. This prefix will be used for all pairs of fastq files in this run. The ID and PU tags will consist of this prefix and an identifier, that will be unique for a pair of fastq files. (default: None)
- --standalone-bqsr
-
Run standalone BQSR. (default: None)
- --disable-use-window-selector-model
-
Change the window selector model from Allele Count Linear to Variant Reads. This option will increase the accuracy and runtime. (default: None)
- --gvcf
-
Generate variant calls in .gvcf Format. (default: None)
- --norealign-reads
-
Do not locally realign reads before calling variants. Reads longer than 500 bp are never realigned. (default: None)
- --sort-by-haplotypes
-
Reads are sorted by haplotypes (using HP tag). (default: None)
- --keep-duplicates
-
Keep reads that are duplicate. (default: None)
- --vsc-min-count-snps VSC_MIN_COUNT_SNPS
-
SNP alleles occurring at least this many times in the AlleleCount will be advanced as candidates. (default: 2)
- --vsc-min-count-indels VSC_MIN_COUNT_INDELS
-
Indel alleles occurring at least this many times in the AlleleCount will be advanced as candidates. (default: 2)
- --vsc-min-fraction-snps VSC_MIN_FRACTION_SNPS
-
SNP alleles occurring at least this fraction of all counts in the AlleleCount will be advanced as candidates. (default: 0.12)
- --vsc-min-fraction-indels VSC_MIN_FRACTION_INDELS
-
Indel alleles occurring at least this fraction of all counts in the AlleleCount will be advanced as candidates. (default: None)
- --min-mapping-quality MIN_MAPPING_QUALITY
-
By default, reads with any mapping quality are kept. Setting this field to a positive integer i will only keep reads that have a MAPQ >= i. Note this only applies to aligned reads. (default: 5)
- --min-base-quality MIN_BASE_QUALITY
-
Minimum base quality. This option enforces a minimum base quality score for alternate alleles. Alternate alleles will only be considered if all bases in the allele have a quality greater than min_base_quality. (default: 10)
- --mode MODE
-
Value can be one of [shortread, pacbio, ont]. By default, it is shortread. If mode is set to pacbio, the following defaults are used: --norealign-reads, --alt-aligned-pileup diff_channels, --vsc-min-fraction-indels 0.12. If mode is set to ont, the following defaults are used: -norealign-reads, --variant-caller VCF_CANDIDATE_IMPORTER. (default: shortread)
- --alt-aligned-pileup ALT_ALIGNED_PILEUP
-
Value can be one of [none, diff_channels]. Include alignments of reads against each candidate alternate allele in the pileup image. (default: None)
- --variant-caller VARIANT_CALLER
-
Value can be one of [VERY_SENSITIVE_CALLER, VCF_CANDIDATE_IMPORTER]. The caller to use to make examples. If you use VCF_CANDIDATE_IMPORTER, it implies force calling. Default is VERY_SENSITIVE_CALLER. (default: None)
- --add-hp-channel
-
Add another channel to represent HP tags per read. (default: None)
- --parse-sam-aux-fields
-
Auxiliary fields of the BAM/CRAM records are parsed. If either --sort-by-haplotypes or --add-hp-channel is set, then this option must also be set. (default: None)
- --use-wes-model
-
If passed, the WES model file will be used. Only used in shortread mode. (default: None)
- --include-med-dp
-
If True, include MED_DP in the output gVCF records. (default: None)
- --normalize-reads
-
If True, allele counter left align INDELs for each read. (default: None)
- --pileup-image-width PILEUP_IMAGE_WIDTH
-
Pileup image width. Only change this if you know your model supports this width. (default: 221)
- --channel-insert-size
-
If True, add insert_size channel into pileup image. By default, this parameter is true in WGS and WES mode. (default: None)
- --no-channel-insert-size
-
If True, don't add insert_size channel into the pileup image. (default: None)
- --max-read-size-512
-
Allow deepvariant to run on reads of size 512bp. The default size is 320 bp. (default: None)
- --prealign-helper-thread
-
Use an extra thread for the pre-align step. This parameter is more useful when --max-reads-size-512 is set. (default: None)
- --track-ref-reads
-
If True, allele counter keeps track of reads supporting ref. By default, allele counter keeps a simple count of the number of reads supporting ref. (default: None)
- --phase-reads
-
Calculate phases and add HP tag to all reads automatically. (default: None)
- --dbg-min-base-quality DBG_MIN_BASE_QUALITY
-
Minimum base quality in a k-mer sequence to consider. (default: 15)
- --ws-min-windows-distance WS_MIN_WINDOWS_DISTANCE
-
Minimum distance between candidate windows for local assembly (default: 80)
- --channel-gc-content
-
If True, add gc_content channel into pileup image (default: None)
- --channel-hmer-deletion-quality
-
If True, add hmer deletion quality channel into pileup image (default: None)
- --channel-hmer-insertion-quality
-
If True, add hmer insertion quality channel into pileup image (default: None)
- --channel-non-hmer-insertion-quality
-
If True, add non-hmer insertion quality channel into pileup image (default: None)
- --skip-bq-channel
-
If True, ignore base quality channel. (default: None)
- --aux-fields-to-keep AUX_FIELDS_TO_KEEP
-
Comma-delimited list of auxiliary BAM fields to keep. Values can be [HP, tp, t0] (default: HP)
- --vsc-min-fraction-hmer-indels VSC_MIN_FRACTION_HMER_INDELS
-
Hmer Indel alleles occurring at least this be advanced as candidates. Use this threshold if hmer and non-hmer indels should be treated differently (Ultima reads)Default will use the same threshold for hmer and non-hmer indels, as defined in vsc_min_fraction_indels. (default: None)
- --vsc-turn-on-non-hmer-ins-proxy-support
-
Add read-support from soft-clipped reads and other non-hmer insertion alleles,to the most frequent non-hmer insertion allele. (default: None)
- --consider-strand-bias
-
If True, expect SB field in calls and write it to VCF (default: None)
- --p-error P_ERROR
-
Basecalling error for reference confidence model. (default: 0.001)
- --channel-ins-size
-
If true, add another channel to represent size of insertions. (good for flow-based sequencing) (default: None)
- --max-ins-size MAX_INS_SIZE
-
Max insertion size for ins_size_channel, larger insertions will look like max (have max intensity) (default: 10)
- --disable-group-variants
-
If using vcf_candidate_importer and multi-allelic sites are split across multiple lines in VCF, set to True so that variants are not grouped when transforming CallVariantsOutput to Variants. (default: None)
- --filter-reads-too-long
-
Ignore all input BAM reads with size > 512bp (default: None)
- --haploid-contigs HAPLOID_CONTIGS
-
Optional list of non autosomal chromosomes. For all listed chromosomes HET probabilities are not considered. (default: None)
Performance Options:
- --bwa-nstreams BWA_NSTREAMS
-
Number of streams per GPU to use; note: more streams increases device memory usage (default: 4)
- --bwa-cpu-thread-pool BWA_CPU_THREAD_POOL
-
Number of threads to devote to CPU thread pool per GPU (default: 16)
- --num-cpu-threads-per-stage NUM_CPU_THREADS_PER_STAGE
-
(Same as above) Number of threads to devote to CPU thread pool per GPU (default: None)
- --gpuwrite
-
Use one GPU to accelerate writing final BAM/CRAM. (default: None)
- --gpuwrite-deflate-algo GPUWRITE_DEFLATE_ALGO
-
Choose the nvCOMP DEFLATE algorithm to use with --gpuwrite. Note these options do not correspond to CPU DEFLATE options. Valid options are 1, 2, and 4. Option 1 is fastest, while options 2 and 4 have progressively lower throughputs but higher compression ratios. The default value is 1 when the user does not provide an input (i.e., None) (default: None)
- --gpusort
-
Use GPUs to accelerate sorting and marking. (default: None)
- --use-gds
-
Use GPUDirect Storage (GDS) to enable a direct data path for direct memory access (DMA) transfers between GPU memory and storage. Must be used concurrently with --gpuwrite. Please refer to Parabricks Documentation > Best Performance for information on how to set up and use GPUDirect Storage. (default: None)
- --memory-limit MEMORY_LIMIT
-
System memory limit in GBs during sorting and postsorting. By default, the limit is half of the total system memory. (default: 62)
- --low-memory
-
Use low memory mode; will lower the number of streams per GPU (default: None)
- --num-cpu-threads-per-stream NUM_CPU_THREADS_PER_STREAM
-
Number of CPU threads to use per stream. (default: 6)
- --num-streams-per-gpu NUM_STREAMS_PER_GPU
-
Number of streams to use per GPU. (default: 2)
- --run-partition
-
Divide the whole genome into multiple partitions and run multiple processes at the same time, each on one partition. (default: None)
- --gpu-num-per-partition GPU_NUM_PER_PARTITION
-
Number of GPUs to use per partition. (default: None)
- --max-reads-per-partition MAX_READS_PER_PARTITION
-
The maximum number of reads per partition that are considered before following processing such as sampling and realignment. (default: 1500)
- --partition-size PARTITION_SIZE
-
The maximum number of basepairs allowed in a region before splitting it into multiple smaller subregions. (default: 1000)
- --read-from-tmp-dir
-
Running variant caller reading from bin files generated by Aligner and sort. Run postsort in parallel. This option will increase device memory usage. (default: None)
Common options:
- --logfile LOGFILE
-
Path to the log file. If not specified, messages will only be written to the standard error output. (default: None)
- --tmp-dir TMP_DIR
-
Full path to the directory where temporary files will be stored.
- --with-petagene-dir WITH_PETAGENE_DIR
-
Full path to the PetaGene installation directory. By default, this should have been installed at /opt/petagene. Use of this option also requires that the PetaLink library has been preloaded by setting the LD_PRELOAD environment variable. Optionally set the PETASUITE_REFPATH and PGCLOUD_CREDPATH environment variables that are used for data and credentials (default: None)
- --keep-tmp
-
Do not delete the directory storing temporary files after completion.
- --no-seccomp-override
-
Do not override seccomp options for docker (default: None).
- --version
-
View compatible software versions.
GPU options:
- --num-gpus NUM_GPUS
-
Number of GPUs to use for a run. GPUs 0..(NUM_GPUS-1) will be used.
The --in-fq option takes the names of two FASTQ files, optionally followed by a quoted read group. The FASTQ filenames must not start with a hyphen.