brentp / smoove

structural variant calling and genotyping with existing tools, but, smoothly.
Apache License 2.0
221 stars 21 forks source link

smoove call for tumor/normal pairs #243

Open TLyan-ze opened 4 days ago

TLyan-ze commented 4 days ago

Hi, I want to make sure that when I use smoove call for tumor/normal pairs. Is there a requirement for the order of two bam files? Which command is correct ? The command is as follows: smoove call -x --name sample --fasta genome.fa -p 4 --genotype --outdir ./ path/normal.bam path/tumor.bam smoove call -x --name sample --fasta genome.fa -p 4 --genotype --outdir ./ path/tumor.bam path/normal.bam

Thanks in advance!

brentp commented 4 days ago

Hi, the order doesn't matter. You'll have to decide post-hoc what is somatic and what is not (the genotypes won't help you there as they are for diploid samples).

TLyan-ze commented 4 days ago

ok, thanks!