How to install Picard/Pilons software and do variant call on a set of .sam files?
1
0
Entering edit mode
8.3 years ago
elvissober ▴ 20

How to install Picard software and do variant call on a set of .sam files? I have unzipped the archive, read the docs, not clear how to run it from a folder and what commands call variants on .sam and .bam files. Thank you.

software error sequencing wgs • 2.3k views
ADD COMMENT
1
Entering edit mode

I am also having trouble running Pilon. When I use the command above to get help for the.jar file, I get an error saying "No main manifest attribute."

ADD REPLY
0
Entering edit mode

Please post the command you are trying to use that is giving you an error.

ADD REPLY
1
Entering edit mode
8.3 years ago

get help:

java -jar /path/to/picard.jar

get help for specific sub-program

java -jar /path/to/picard.jar MergSamFiles

run a specific sub-program

java -jar /path/to/picard.jar MergSamFiles I=f1.bam I=f2.bam O=o.bam

or

find ./ -name "*.bam" > in.list
java -jar /path/to/picard.jar MergSamFiles I=in.list O=o.bam

there is nothing in picard for calling variants. See gatk or samtools.

ADD COMMENT

Login before adding your answer.

Traffic: 2478 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