bam-readcount error Expect Library
2
0
Entering edit mode
5.1 years ago
9521ljh ▴ 50

After i do

java -jar varscan.jar processSomatic output.basename.snp

Then, i get output.base.snp.Somatic.hc.filter

Then to execute False Positive Filter:

bam-readcount -q 1 -b 20 -f reference.fasta -l output.base.snp.Somatic.hc.filter tumorfile.bam >varscan.variants.readcounts

but the output give me

Expect Library: LB in BAM

what is wrong? , i can't understand what should i input after " -l "

snp sequencing varscan bam-readcount • 1.0k views
ADD COMMENT
0
Entering edit mode
5.1 years ago

as far as I understand, there is no read group with a LB attribute. https://software.broadinstitute.org/gatk/documentation/article?id=6472

ADD COMMENT
0
Entering edit mode
5.1 years ago
ATpoint 81k

Probably the input file for -l is malformatted. It must be a BED file with chr-start-end. The documentation, depending on which website you check (original VarScan page, GitHub, the VarScan2 how-to paper) is misleading at times. Given a VCF file, just do:

awk '$1 ~ /^#/ {next} {print $1, $2-1, $2}' in.vcf | sort -k1,1 -k2,2n -u > out.bed
ADD COMMENT

Login before adding your answer.

Traffic: 2673 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6