All Projects → xjtu-omics → msisensor-pro

xjtu-omics / msisensor-pro

Licence: other
Microsatellite Instability (MSI) detection using high-throughput sequencing data.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to msisensor-pro

rvtests
Rare variant test software for next generation sequencing data
Stars: ✭ 114 (+56.16%)
Mutual labels:  next-generation-sequencing
gff3toembl
Converts Prokka GFF3 files to EMBL files for uploading annotated assemblies to EBI
Stars: ✭ 27 (-63.01%)
Mutual labels:  next-generation-sequencing
DNAscan
DNAscan is a fast and efficient bioinformatics pipeline that allows for the analysis of DNA Next Generation sequencing data, requiring very little computational effort and memory usage.
Stars: ✭ 36 (-50.68%)
Mutual labels:  next-generation-sequencing
plasmidtron
Assembling the cause of phenotypes and genotypes from NGS data
Stars: ✭ 27 (-63.01%)
Mutual labels:  next-generation-sequencing
ngstools
My own tools code for NGS data analysis (Next Generation Sequencing)
Stars: ✭ 28 (-61.64%)
Mutual labels:  next-generation-sequencing
saffrontree
SaffronTree: Reference free rapid phylogenetic tree construction from raw read data
Stars: ✭ 17 (-76.71%)
Mutual labels:  next-generation-sequencing
PHAT
Pathogen-Host Analysis Tool - A modern Next-Generation Sequencing (NGS) analysis platform
Stars: ✭ 17 (-76.71%)
Mutual labels:  next-generation-sequencing
ATACseq
Analysis Workflow for Assay for Transposase-Accessible Chromatin using sequencing (ATAC-Seq)
Stars: ✭ 51 (-30.14%)
Mutual labels:  next-generation-sequencing
fq
Command line utility for manipulating Illumina-generated FastQ files.
Stars: ✭ 31 (-57.53%)
Mutual labels:  next-generation-sequencing
angsd-wrapper
Utilities for analyzing next generation sequencing data.
Stars: ✭ 13 (-82.19%)
Mutual labels:  next-generation-sequencing
mlst check
Multilocus sequence typing by blast using the schemes from PubMLST
Stars: ✭ 22 (-69.86%)
Mutual labels:  next-generation-sequencing
workflows
Bioinformatics workflows developed for and used on the St. Jude Cloud project.
Stars: ✭ 16 (-78.08%)
Mutual labels:  next-generation-sequencing
SNPGenie
Program for estimating πN/πS, dN/dS, and other diversity measures from next-generation sequencing data
Stars: ✭ 81 (+10.96%)
Mutual labels:  next-generation-sequencing
assembly improvement
Improve the quality of a denovo assembly by scaffolding and gap filling
Stars: ✭ 46 (-36.99%)
Mutual labels:  next-generation-sequencing
minorseq
Minor Variant Calling and Phasing Tools
Stars: ✭ 15 (-79.45%)
Mutual labels:  next-generation-sequencing
gubbins
Rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences using Gubbins
Stars: ✭ 103 (+41.1%)
Mutual labels:  next-generation-sequencing
pm4ngs
Project Manager for NGS data analysis
Stars: ✭ 21 (-71.23%)
Mutual labels:  next-generation-sequencing
snp-sites
Finds SNP sites from a multi-FASTA alignment file
Stars: ✭ 182 (+149.32%)
Mutual labels:  next-generation-sequencing
cacao
Callable Cancer Loci - assessment of sequencing coverage for actionable and pathogenic loci in cancer
Stars: ✭ 21 (-71.23%)
Mutual labels:  next-generation-sequencing
IGoR
IGoR is a C++ software designed to infer V(D)J recombination related processes from sequencing data. Find full documentation at:
Stars: ✭ 42 (-42.47%)
Mutual labels:  hypermutation

Published in Genomics, Proteomics & Bioinformatics GitHub last commit GitHub Release Date GitHub release (latest SemVer including pre-releases) Docker Cloud Build Status Bioconda Docker Pulls GitHub all releases

MSIsensor-pro

Please click here to see more about MSIsensor-pro in Wiki.

Welcome to try our new software MSIsensor-RNA for MSI detection with RNA-seq data!

Contact

If you want to apply the MSIsensor-pro to commercial purposes, please contact Peng Jia ([email protected]) or Kai Ye ([email protected]) for a license and get more services.

Questions

If you have any questions, please open an issue. If you don't get a prompt response(maybe two working day), please contact with Peng Jia ([email protected]).

License

MSIsensor-pro is free for non-commercial use by academic, government, and non-profit/not-for-profit institutions. A commercial version of the software is available and licensed through Xi’an Jiaotong University. For more information, please contact with Peng Jia ([email protected]) or Kai Ye ([email protected]).

Citation

Peng Jia, Xiaofei Yang, Li Guo, Bowen Liu, Jiadong Lin, Hao Liang, et al. MSIsensor-pro: fast, accurate, and matched-normal-sample-free detection of microsatellite instability. Genomics Proteomics Bioinformatics 2020,18(1). PDF

General introduction

MSIsensor-pro is an updated version of msisensor. MSIsensor-pro evaluates Microsatellite Instability (MSI) for cancer patients with next generation sequencing data. It accepts the whole genome sequencing, whole exome sequencing and target region (panel) sequencing data as input. MSIsensor-pro introduces a multinomial distribution model to quantify polymerase slippages for each tumor sample and a discriminative sites selection method to enable MSI detection without matched normal samples. For samples of various sequencing depths and tumor purities, MSIsensor-pro significantly outperformed the current leading methods in terms of both accuracy and computational cost. If you want to know more detail about MSIsensor-pro, please see the MSIsensor-pro Schematics and Internals page.

Scopes of MSIsensor-pro

MSIsensor-pro evaluates MSI status of a given sample with next generation sequencing (NGS) data. If you have normal-tumor paired DNA sequences, you can use msi (inherited from msisensor) module to score MSI status while pro module would be the option if matched normal is not available.

How to install MSIsensor-pro?

Directly using binary version

  wget https://github.com/xjtu-omics/msisensor-pro/raw/master/binary/msisensor-pro
  chmod +x msisensor-pro 
  export PATH=`pwd`:$PATH

Install Using Docker

   docker pull pengjia1110/msisensor-pro   
   docker run pengjia1110/msisensor-pro msisensor-pro

Install Using Bioconda

  conda install msisensor-pro

Install from source code

( Recommended For Developers )

Install the dependencies

Dependent packages including zlib, ncurses and nurses-dev are required for MSIsensor-pro. You may already have these prerequisite packages. If not, you need to run the following code to obtain dependent packages.

  • For Debian or Ubuntu:

    sudo apt-get install libbz2-dev zlib1g-dev libcurl4-openssl-dev libncurses5-dev libncursesw5-dev
    
  • For Fedora, CentOS or RHEL

    sudo yum install bzip2-devel xz-devel zlib-devel ncurses-devel ncurses
    

Build MSIsensor-pro from source code

  • colne the repository from our github

    git clone https://github.com/xjtu-omics/msisensor-pro
    
  • make

    cd msisensor-pro/
    ./INSTALL
    
  • install

    sudo mv msisensor-pro /usr/local/bin/
    

How to use MSI ?

Usage:

  msisensor-pro <command> [options]

Key Commands:

  • scan

    scan the reference genome to get microsatellites information
    
  • baseline

     build baseline for tumor only detection
    
  • msi

     evaluate MSI using paired tumor-normal sequencing data
    
  • pro

     evaluate MSI using single (tumor) sample sequencing data 
    

See more detail in the Key Commands page and Best Practices page.

Files format

see details in the Files format page in WiKi.

Frequently asked questions

see details in the Frequently asked questions page in WiKi.

Citation

Peng Jia, Xiaofei Yang, Li Guo, Bowen Liu, Jiadong Lin, Hao Liang, et al. MSIsensor-pro: fast, accurate, and matched-normal-sample-free detection of microsatellite instability. Genomics Proteomics Bioinformatics 2020,18(1). PDF

Contributors

  • Peng Jia
  • Bowen Liu
  • Hao Liang
  • Mingzhe Duan
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].