SiteMap

Home
Manual
README
Download

Related Tools

GATK

Other Links

MDACC BCB
MDACC Biostatistics

Author

Wenyi Wang
Gang Peng

Introduction


It is still challenging to call rare variants. In family-based sequencing studies, information from all family members should be utilized to more accurately identify new germline mutations. FamSeq serves this purpose by providing the probability of an individual carrying a variant given his/her entire family’s raw measurements. FamSeq accommodates de novo mutations and can perform variant calling at chrX.

FamSeq takes both likelihood and the widely used vcf files as input.

Version


Aug 14th, 2014. Please visit our new webpage here to download the latest FamSeq.

Reference

  • Peng G, Fan Y, Palculict TB, Shen P, Ruteshouser EC, Chi A, Davis RW, Huff V, Scharfe C, Wang W✉. Rare variant detection using family-based sequencing analysis. Proceedings of the National Academy of Sciences. 2013 Mar 5;110(10):3985-90 [Abstract]

    How to run FamSeq

    1. download FamSeq source from http://odin.mdacc.tmc.edu/~wwang7/FamSeqIndex.html

    2. extract files from the compressed file:
        tar xvf FamSeq1.0.1.tar.gz

    3. go to source file directory and compile the source file
       cd FamSeq/src/
       #CPU version
       make
       #GPU version if you have CUDA-enabled GPUs in your computer.
       make -f makefile.gpu
       #If you use MacOS 10.8 with XCode 5, or an error like "unsupported option '-dumpspecs'" occurs when compiling, use the following command to compile
       make -f makefile.gpu.clang

    4. run the test data
       #CPU version
       ./FamSeq vcf -vcfFile ../TestData/test.vcf -pedFile ../TestData/PDF01.ped -output test.FamSeq.vcf -v
       #GPU version
       ./FamSeqCuda vcf -vcfFile ../TestData/test.vcf -pedFile ../TestData/PDF01.ped -output test.FamSeq.vcf

    Download CUDA for GPU programming

    You can download the CUDA toolkit from here