Dear Raony,
In snpEff command , when I gave
case1:
java -Xmx12G -jar snpEff.jar eff -c snpEff.config -v -i vcf -o vcf -onlyProtein true hg19 Fam_15_35_VC.160522.recal.filtered.vcf > Fam_15_35_VC.160522.recal.filtered.snpEff.onlyprot.vcf 2>log_onlyprotein.txt
I am getting the following error:
Error : Unknown parameter 'Fam_15_35_VC.160522.recal.filtered.vcf'
Command line : SnpEff -i vcf -o vcf true hg19 Fam_15_35_VC.160522.recal.filtered.vcf
If you see the command line from the error, there is no "-onlyProtein", but the true value is present.
Then I tried following case by removing "true" and just gave -onlyProtein:
Command: java -Xmx12G -jar snpEff.jar eff -c snpEff.config -v -i vcf -o vcf -onlyProtein hg19 Fam_15_35_VC.160522.recal.filtered.vcf > Fam_15_35_VC.160522.recal.filtered.snpEff.onlyprot.vcf 2>log_onlyprotein.txt
It worked. But "-onlyProtein, Default is false"

