Skip to content
Pierre Lindenbaum edited this page Jun 23, 2014 · 12 revisions

##Motivation

Reads a list of path to VCF files and find mutations (chrom-pos).

The program will try to fix the chromosome names according to the dictionary in the VCF headers.

##Compilation

See also Compilation.

$  ant findamutation

##Synopsis

$ java -jar dist/findamutation.jar -p chr1:pos1  -p chr2:pos2  (stdin|list-of-path.txt) 

##Options

Option Description
-p (chrom:pos) Add a position to find. Can be called multiple times.
-h get help (this screen) and exit.
-v print version and exit.
-L (level) log level. One of java.util.logging.Level . Optional.
--doap prints a DOAP+XML description of the program and exit

##Source Code

Main code is: https://github.com/lindenb/jvarkit/blob/master/src/main/java/com/github/lindenb/jvarkit/tools/misc/FindAMutation.java

##Example

$ find ./ -name "*.vcf" -o -name "*.vcf.gz" |\
   java -jar dist/__TODO__.jar -p "chr1:1234" 

##See also

##History

  • 2014: Creation
Clone this wiki locally