Skip to content
Validated, scalable, community developed variant calling, RNA-seq and small RNA analysis
Python Other
  1. Python 99.1%
  2. Other 0.9%
Branch: master
Clone or download

Latest commit

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github/ISSUE_TEMPLATE Update bug_report.md Mar 19, 2020
artwork Convert README.rst to README.md (#3114) Feb 28, 2020
bcbio Viral content: report the number of reads and the percentage of reads ( May 6, 2020
config [skip ci] update hg38-gemini.conf Apr 21, 2020
docs [skip ci] update outputs.md May 7, 2020
scripts Conda install cleanup (#3208) Apr 30, 2020
tests Enable running CWL tests in Vagrant and cleanup CWL tests (#3173) Apr 7, 2020
.gitignore Simplify installation in Vagrant (#3190) Apr 16, 2020
.readthedocs.yml Convert documentation to Markdown (#3128) Mar 17, 2020
.travis.yml Fix missing qt package error in Travis CI Mar 31, 2020
CODE_OF_CONDUCT.md Add contributor code of conduct. Jul 12, 2019
HISTORY.md Support single-end reads for ATAC-seq. Apr 29, 2020
LICENSE.txt Add MIT license to top level directory. Thanks to @lbeltrame. #54 Jul 18, 2013
MANIFEST.in Add support for 10x version 2. Oct 30, 2018
README.md Update citation info (#3178) Apr 9, 2020
Vagrantfile Simplify installation in Vagrant (#3190) Apr 16, 2020
requirements-conda.txt Bump to 1.2.3. Apr 7, 2020
requirements-dev.txt Add Flake8 as a development dependency (#3198) Apr 23, 2020
requirements.txt Bump to 1.2.3. Apr 7, 2020
setup.cfg Add Flake8 as a development dependency (#3198) Apr 23, 2020
setup.py 1.2.3 release. Apr 7, 2020

README.md

bcbio banner

Validated, scalable, community developed variant calling, RNA-seq and small RNA analysis. You write a high level configuration file specifying your inputs and analysis parameters. This input drives a parallel run that handles distributed execution, idempotent processing restarts and safe transactional steps. bcbio provides a shared community resource that handles the data processing component of sequencing analysis, providing researchers with more time to focus on the downstream biology.

TravisCI status Documentation status DOI

Features

  • Community developed: We welcome contributors with the goal of overcoming the biological, algorithmic and computational challenges that face individual developers working on complex pipelines in quickly changing research areas. See our users page for examples of bcbio-nextgen deployments, and the developer documentation for tips on contributing.
  • Installation: A single installer script prepares all third party software, data libraries and system configuration files.
  • Automated validation: Compare variant calls against common reference materials or sample specific SNP arrays to ensure call correctness. Incorporation of multiple approaches for alignment, preparation and variant calling enable unbiased comparisons of algorithms.
  • Distributed: Focus on parallel analysis and scaling to handle large population studies and whole genome analysis. Runs on single multicore computers, in compute clusters using IPython parallel, or on the Amazon cloud. See the parallel documentation for full details.
  • Multiple analysis algorithms: bcbio-nextgen provides configurable variant calling, RNA-seq and small RNA pipelines.

Quick start

  1. Install bcbio-nextgen with all tool dependencies and data files:

    wget https://raw.githubusercontent.com/bcbio/bcbio-nextgen/master/scripts/bcbio_nextgen_install.py
    python bcbio_nextgen_install.py /usr/local/share/bcbio --tooldir=/usr/local \
          --genomes GRCh37 --aligners bwa --aligners bowtie2

    producing an editable system configuration file referencing the installed software, data and system information.

  2. Automatically create a processing description of sample FASTQ and BAM files from your project, and a CSV file of sample metadata:

    bcbio_nextgen.py -w template freebayes-variant project1.csv sample1.bam sample2_1.fq sample2_2.fq

    This produces a sample description file containing pipeline configuration options.

  3. Run analysis, distributed across 8 local cores:

    cd project1/work
    bcbio_nextgen.py ../config/project1.yaml -n 8

Documentation

See the full documentation and longer analysis-based articles. We welcome enhancements or problem reports using GitHub and discussion on the biovalidation mailing list.

Contributors

License

The code is freely available under the MIT license.

You can’t perform that action at this time.