I'm facing the following bug report while running varscan somatic
The bug report shown as below:
log file:
The command I run is shown as:
samtools mpileup -f reference.fasta normal.bam > normal_tissue.mpileup
samtools mpileup -f reference.fasta infected.bam > infected_tissue.mpileup
java -jar VarScan.jar somatic normal_tissue.mpileup infected_tissue.mpileup normal_infected_comparison --mpileup 1 --min-var-freq 0.08 --p-value 0.10 --somatic-p-value 0.05 --output-vcf 1
Apart from that, below is the output result after running the command:
samtools mpileup -f reference.fasta normalA.bam infectedA.bam normalB.bam infectedB.bam | java -jar VarScan.jar mpileup2cns --min-var-freq 0.08 --p-value 0.05 --output-vcf 1 >cross-sample.varScan.vcf
I not sure how to interpret the output result of mpileup2cns
Thanks for any advice.
The bug report shown as below:
Code:
Bug report: # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f4a3bf04fe8, pid=21559, tid=139956786239248 # # JRE version: 6.0_17-b17 # Java VM: OpenJDK 64-Bit Server VM (14.0-b16 mixed mode linux-amd64 ) # Derivative: IcedTea6 1.7.4 # Distribution: Custom build (Thu Jul 29 16:49:18 EDT 2010) # Problematic frame: # V [libjvm.so+0x57dfe8] # # If you would like to submit a bug report, please include # instructions how to reproduce the bug and visit: # http://icedtea.classpath.org/bugzilla # --------------- T H R E A D --------------- Current thread (0x00007f4a34012000): GCTaskThread [stack: 0x00007f4a3a771000,0x00007f4a3a872000] [id=21561] siginfo:si_signo=SIGSEGV: si_errno=0, si_code=128 (), si_addr=0x0000000000000000 7fff101ff000-7fff10200000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] VM Arguments: java_command: java -jar VarScan.jar somatic normal_tissue.mpileup infected_tissue.mpileup normal_infected_comparison --mpileup 1 --min-var-freq 0.08 --p-value 0.10 --somatic-p-value 0.05 --output-vcf 1 Launcher Type: SUN_STANDARD Environment Variables: PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/edge1987/bin LD_LIBRARY_PATH=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/amd64/server:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/amd64:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/../lib/amd64 SHELL=/bin/bash
Code:
[b]Min coverage: 8x for Normal, 6x for Tumor Min reads2: 2 Min strands2: 1 Min var freq: 0.08 Min freq for hom: 0.75 Normal purity: 1.0 Tumor purity: 1.0 Min avg qual: 15 P-value thresh: 0.1 Somatic p-value: 0.05 Reading input from normal_tissue.mpileup Reading mpileup input... Parsing Exception on line: normal_tissue_seq1_630 286 A 40 ^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~.^~. ?@CCCCCB@@C<@CC@@?CCCCC@@@@CCCCC<@@C@@<@ 6 [/b]
samtools mpileup -f reference.fasta normal.bam > normal_tissue.mpileup
samtools mpileup -f reference.fasta infected.bam > infected_tissue.mpileup
java -jar VarScan.jar somatic normal_tissue.mpileup infected_tissue.mpileup normal_infected_comparison --mpileup 1 --min-var-freq 0.08 --p-value 0.10 --somatic-p-value 0.05 --output-vcf 1
Apart from that, below is the output result after running the command:
samtools mpileup -f reference.fasta normalA.bam infectedA.bam normalB.bam infectedB.bam | java -jar VarScan.jar mpileup2cns --min-var-freq 0.08 --p-value 0.05 --output-vcf 1 >cross-sample.varScan.vcf
Code:
##FORMAT=<ID=ADR,Number=1, Type=Integer,Description=" Depth of variant-supporting bases on reverse strand (reads2minus)"> #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT Sample1 Sample2 Sample3 Sample4 normal_tissue_seq1_630 101 . A . . PASS ADP=0;WT=0;HET=0;HOM=0;NC=4 GT:GQ:SDP:DP:RD:AD:FREQ:PVAL: RBQ:ABQ:RDF:RDR:ADF:ADR ./.:.:0 ./.:.:1 ./.:.:0 ./.:.:0 normal_tissue_seq5_580 532 . A . . PASS ADP=1548;WT=4;HET=0;HOM=0;NC=0 GT:GQ:SDP:DP:RD:AD:FREQ:PVAL:RBQ:ABQ:RDF:RDR:ADF:ADR 0/0:2147483647:1957:1820:1817:2:0.11%:5E-1:33:23:923:894:0:2 0/0:2147483647:1987:1894:1893:1:0.05%:7.5007E-1:34:17:1189:704:0:1 normal_tissue_seq10_950 533 . C T . PASS ADP=1611;WT=3;HET=1;HOM=0;NC=0 GT:GQ:SDP:DP:RD:AD:FREQ:PVAL:RBQ:ABQ:RDF:RDR:ADF:ADR 0/0:303:1969:1843:1820:23:1.25%:1.3987E-6:33:24:880:940:4:19 0/0:2147483647:1981:1916:1908:8:0.42%:1.9421E-2:35:23:1162:746:2:6
Thanks for any advice.
Comment