Skip to content

A preprocessing pipeline for ChIP-seq, including alignment, quality control, and visualization.

License

Notifications You must be signed in to change notification settings

Puneet-Shivanand/chip-seq_preprocess

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipeline for ChIP-seq preprocessing

Overview

Here is the current pipeline used for ChIP-seq preprocessing, which includes the following steps:

  • align the fastq data to reference genome by bowtie2.
  • run FastQC to check the sequencing quality.
  • remove all reads duplications of the aligned data.
  • generate TDF files for browsing in IGV.
  • run PhantomPeak to check the quality of ChIP.
  • run diffRepeats on multi- and un-mapped reads.
  • run ngs.plot to investigate the enrichment of ChIP-seq data at TSS, TES, and genebody (only implemented in local version, not lsf cluster computing).

The pipeline work flow is:

work flow

Requirement

The softwares used in this pipeline are:

Install above softwares and make sure they are in $PATH.

Installation

Put the scripts in ./bin to a place in $PATH or add ./bin to $PATH.

Usage

Update the config.yaml file to set the configuration required for your project.

Then execute:

python pipeline.py config.yaml

Or on an LSF cluster:

nohup python pipeline.py config.yaml &

After the running of the pipeline, then to summarize the result:

python results_parser.py config.yaml

For the configuration yaml file, project_dir: ~/projects/test_ChIP-seq and data_dir: "data" mean the data folder is ~/projects/test_ChIP-seq/data, and the results will be put in the same folder. Fastq files should be under ~/projects/test_ChIP-seq/data/fastq folder. Now *.fastq, *.fq, *.gz (compressed fastq) files are acceptable. aligner currently only supports using bowtie2.

The location of pipeline.py, results_parser.py, and config.yaml doesn't matter at all. But I prefer to put them under project/script/preprocess folder.

Important:

  • The alignment step includes parsing of results into unique-mapped, multi-mapped, and un-mapped bam files. The unique-mapped results are sent to rmdup, while the multi- and un-mapped results are used to run diffRepeats. Settings to determine unique- and multi-mapped reads are in config.yaml.
  • To make ngs.plot part work, please name the fastq files in this way:
Say condition A, B, each with 2 replicates, and one DNA input per condition. 
Name the files as A_rep1.fastq, A_rep2.fastq, A_input.fastq, B_rep1.fastq, 
B_rep2.fastq, and B_input.fastq.The key point is to make the same condition
 samples with common letters and input samples contain "input" or "Input"
 strings.
  • If use want to only run to some specific step, just modify the function name in pipeline_run in pipeline.py.
  • If the data are pair-end, follow this step:
    • Modify the config.yaml file, change "pair_end" to "yes".
    • Modify the config.yaml file, change "input_files" to "*R1*.fastq.gz" or "*R1*.fastq".
    • Make sure the fastq files named as "*R1*" and "*R2*" pattern.
  • if you want to use cluster:
    • Edit '~/.bash_profile' to make sure all paths in $PATH.
    • Modify config.yaml to fit your demands.
    • multithread in pipeline.py determines the number of concurrent jobs to be submitted to cluster nodes by ruffus. A default value of 10 is used.

Warning:

Bowtie2 allows multiple hits reads, and breaks the assumption of phantomPeak:

It is EXTREMELY important to filter out multi-mapping reads from the BAM/tagAlign
 files. Large number of multimapping reads can severly affect the phantom peak
 coefficient and peak calling results.

So be careful to interpret NSC and RSC in Bowtie2 alignment results.

Notes

In Bowtie2, default parameters are used.

About

A preprocessing pipeline for ChIP-seq, including alignment, quality control, and visualization.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 41.5%
  • R 40.8%
  • Perl 11.4%
  • Shell 6.3%