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
I am using the nf-core/sarek pipeline to analyze genomic data. The pipeline works perfectly fine for my diploid plant samples, and I was able to run it without any issues.
However, I am now analyzing polyploid species (specifically tiploid and tetraploid species), and I need to ensure that the VCF files generated by HaplotypeCaller reflect the tetraploid nature of my samples. Unfortunately, I couldn't find a direct way to specify the --ploidy parameter for GATK HaplotypeCaller in the pipeline.
My goal is to ensure that the VCF files generated by HaplotypeCaller reflect the triploid/tetraploid nature of my samples. I have tried adding --haplotypecaller_options '--ploidy 4', but the pipeline flagged this as an invalid parameter:
WARN: The following invalid input values have been detected:
--haplotypecaller_options: --ploidy 4
Here is the command I used to run the pipeline:
nextflow run nf-core/sarek -profile singularity -c nextflow.config -params-file params.yaml
--input 4n_input.csv --fasta my_reference_genome.fasta
--tools haplotypecaller --skip_tools baserecalibrator
process {
withSingularity = true
singularity.enabled = true
}
I just want to add haplotypecaller --ploidy 4 to it. Could you help with that? Where can I find the specific name of the haplotypecaller step in the workflow?
Hello,
I am using the nf-core/sarek pipeline to analyze genomic data. The pipeline works perfectly fine for my diploid plant samples, and I was able to run it without any issues.
However, I am now analyzing polyploid species (specifically tiploid and tetraploid species), and I need to ensure that the VCF files generated by HaplotypeCaller reflect the tetraploid nature of my samples. Unfortunately, I couldn't find a direct way to specify the --ploidy parameter for GATK HaplotypeCaller in the pipeline.
My goal is to ensure that the VCF files generated by HaplotypeCaller reflect the triploid/tetraploid nature of my samples. I have tried adding --haplotypecaller_options '--ploidy 4', but the pipeline flagged this as an invalid parameter:
WARN: The following invalid input values have been detected:
Here is the command I used to run the pipeline:
nextflow run nf-core/sarek -profile singularity -c nextflow.config -params-file params.yaml
--input 4n_input.csv --fasta my_reference_genome.fasta
--tools haplotypecaller --skip_tools baserecalibrator
Also params.yml file content:
genome: null
dbsnp: null
known_indels: null
known_snps: null
germline_resource: null
sentieon_dnascope_model: null
Is there a way to specify the ploidy for HaplotypeCaller in the current version of nf-core/sarek?
The text was updated successfully, but these errors were encountered: