Giter Club home page Giter Club logo

prosic's Introduction

Postprocessing for Somatic Mutation Calling (PROSIC)

install with bioconda Anaconda-Server Badge

Prosic has been succeeded by Varlociraptor. Please use Varlociraptor instead.

Installation

PROSIC is available via Bioconda, a distribution of bioinformatics software for the conda package manager. Bioconda can be set up in any Linux environment, even without admin rights. With Bioconda set up, PROSIC can be installed via

$ conda install prosic

Usage

PROSIC offers three command line utilities:

  • prosic-extract-observations
  • prosic-call
  • prosic-annotate

The purpose of PROSIC is to call somatic insertions and deletions (indels) on tumor/normal sample pairs. For this, PROSIC requires a VCF file with preliminary indel calls, e.g. obtained with Platypus. Then, calling with PROSIC consists of three steps.

Step 1: extracting observations

First, we extract informations about relevant variants and the corresponding alignments from the VCF and the corresponding BAM files:

$ prosic-extract-observations $ALIGNER pre-calls.vcf normal.bam tumor.bam > observations.txt

See prosic-extract-observations --help for information about the valid values of $ALIGNER and other parameters.

Step 2: calling

Second, the significance of mutations is assessed via

$ prosic-call observations.txt > calls.txt

See prosic-call -h for information about parameters.

Step 3: annotation

Finally, the initial VCF file is annotated with the somatic mutation calls from PROSIC:

$ prosic-annotate pre-calls.vcf calls.txt > calls.vcf

Thereby, each indel in the resulting VCF is classified into CALL=SOMATIC or CALL=GERMLINE and the posterior probability for the selected event is provided in the field POSTERIOR_PROB.

Compiling from source

PROSIC uses the following C libraries:

  • The GNU scientific library (GSL)
  • The GMP library for arbitrary precision arithmetic

Further, the PROSIC depends on the following Python packages:

  • PySAM for working with BAM/SAM files
  • PyVCF for working with VCF files

To install PROSIC from source, issue the following commands:

$ cmake CMakeLists.txt && make
$ cp bin/prosic-call $BIN_PATH
$ python setup.py install --user

Where $BIN_PATH should be a folder in your $PATH, e.g. ~/.local/bin.

Author

Louis Dijkstra

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.