I'm trying to check for mutations from whole exome sequencing of two samples from the same patient, and was recommended to use the nextflow sarek pipeline. I assembled the fastq files I needed, made the csv file describing the patient sample information (patient, sample, lane, fastq_1, fastq_2), and entered the following command:
nextflow run nf-core/sarek
-profile docker
--input ./samplesheet.csv
--outdir .
This ran for 12 hours and gave me the message
- [nf-core/sarek] Pipeline completed successfully-
The output files/folders have appeared as described in the "Directory Structure" described here: https://nf-co.re/sarek/3.0.1/docs/output
In the workflow report in the pipeline_info folder I see the following processes were run:
- FASTQC
- TABIX_BGZIPTABIX_INTERVAL_COMBINED
- CREATE_INTERVALS_BED
- TABIX_BGZIPTABIX_INTERVAL_SPLIT
- FASTP
- BWAMEM1_MEM
- GATK4_MARKDUPLICATES
- MOSDEPTH
- SAMTOOLS_STATS
- GATK4_BASERECALIBRATOR
- GATK4_GATHERBQSRREPORTS
- GTK4_APPLYBQSR
- MERGE_CRAM
- INDEX_CRAM
- CUSTOM_DUMPSOFTWAREVERSIONS
- MULTIQC
None of these are for variant calling as I understand. The output page (https://nf-co.re/sarek/3.0.1/docs/output), under "Variant Calling" says that results regarding variant calling are collected in {outdir}/variantcalling/, however this folder does not exist for me. So the pipeline has completed, but has not performed any variant calling. Why has variant calling not been performed and how do I perform variant calling with sarek here?
Thanks in advance
nf-core
sarek
variant-calling
wes