We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am calling SNPs with bcftools mpileup and bcftools call.
I use the output vcf as an input for vartrix. In the vartrix result, there are positions that have no alt reads for any cell.
Shouldn't there be at least one cell per position, that has alt reads?
Here is the code, that I used.
bcftools mpileup -Q 30 -A -x -O u -f $REFERENCE_FASTA $BAM | bcftools call -mv > $OUT_DIR/${SAMPLE}.vcf
vartrix_linux --threads $ncores --mapq 30 --bam $BAM --vcf $OUT_DIR/${SAMPLE}.vcf --scoring-method "alt_frac" --cell-barcodes $CELLS --fasta $REFERENCE_FASTA --out-matrix ${out_matrix}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am calling SNPs with bcftools mpileup and bcftools call.
I use the output vcf as an input for vartrix. In the vartrix result, there are positions that have no alt reads for any cell.
Shouldn't there be at least one cell per position, that has alt reads?
Here is the code, that I used.
bcftools mpileup -Q 30 -A -x -O u -f $REFERENCE_FASTA $BAM | bcftools call -mv > $OUT_DIR/${SAMPLE}.vcf
vartrix_linux --threads $ncores --mapq 30 --bam $BAM --vcf $OUT_DIR/${SAMPLE}.vcf --scoring-method "alt_frac" --cell-barcodes $CELLS --fasta $REFERENCE_FASTA --out-matrix ${out_matrix}
The text was updated successfully, but these errors were encountered: