项目作者: humanlongevity

项目描述 :
TREDPARSE: HLI Short Tandem Repeat (STR) caller
高级语言: Python
项目地址: git://github.com/humanlongevity/tredparse.git
创建时间: 2017-06-29T00:02:56Z
项目社区:https://github.com/humanlongevity/tredparse

开源协议:Other

下载


TREDPARSE: HLI Short Tandem Repeat (STR) caller

Latest PyPI version
Travis-CI

Author Haibao Tang (tanghaibao)
Smriti Ramakrishnan (smr18)
Email htang@humanlongevity.com
License See included LICENSE

Description

Process a list of TRED (trinucleotide repeats disease) loci, and infer
the most likely genotype.

Installation

Make sure your Python version >= 2.7 (tested in ubuntu, Python 3 not yet
supported):

  1. pip install --user -U git+git://github.com/humanlongevity/tredparse.git

For accessing BAMs that are located on S3, please refer to
docker/tredparse.dockerfile for installation of SAMTOOLS/pysam with S3
support.

Or, you can simply build and use the docker image:

  1. docker pull humanlongevity/tredparse
  2. docker run -v `pwd`:`pwd` -w `pwd` humanlongevity/tredparse \
  3. tred.py --tred HD test.bam

Example

First specify the input bam paths and sample keys in a CSV file, like
tests/samples.csv. This file is comma separated:

  1. #SampleKey,BAM,TRED
  2. t001,tests/t001.bam,HD
  3. t002,tests/t002.bam,DM1

If third column is omitted, then all 30 TREDs are scanned. For example:

  1. #SampleKey,BAM
  2. t001,tests/t001.bam
  3. t002,tests/t002.bam

Please also note that the BAM path can start with http:// or s3://, provided
that the corresponding BAM index can be found.

Run tred.py on sample CSV file and generate TSV file with the
genotype:

  1. tred.py tests/samples.csv --workdir work

Highlight the potential risk individuals:

  1. tredreport.py work/*.json --tsv work.tsv

The inferred “at-risk” individuals show up in results:

  1. [DM1] - Myotonic dystrophy 1
  2. rep=CAG inherit=AD cutoff=50 n_risk=1 n_carrier=0 loc=chr19:45770205-45770264
  3. SampleKey inferredGender Calls DM1.FR DM1.PR DM1.RR DM1.PP
  4. t002 Unknown 5|62 5|24 ...|1;39|1;40|1;42|1;43|1;46|2 49|3;50|8 1
  5. [HD] - Huntington disease
  6. rep=CAG inherit=AD cutoff=40 n_risk=1 n_carrier=0 loc=chr4:3074877-3074933
  7. SampleKey inferredGender Calls HD.FR HD.PR HD.RR HD.PP
  8. t001 Unknown 15|41 15|4 ...|1;21|1;24|2;29|1;34|1;41|1 1

One particular individual t001 appears to have 15/41 call (one allele at 15 CAGs
and the other at 41 CAGs) at Huntington disease locus (HD). Since the risk cutoff
is 40, we have inferred it to be at-risk.

A .report.txt file will also be generated that contains a summary of
number of people affected by over-expanded TREDs as well as population allele
frequency.

To better understand the uncertainties in the prediction, we can plot the
likelihood surface based on the model. Using the same example as above at the
Huntington disease case, we can run a command on the JSON output, with option
--tred HD to specify the locus.

  1. tredplot.py likelihood work/t001.json --tred HD

This generates the following plot:

Server demo

The server/client allows tredparse to be run as a service, also showing the
detailed debug information for the detailed computation.

Install meteor if you don’t have it yet.

  1. curl https://install.meteor.com/ | sh

Then build the docker image to run the command, then run the server.

  1. cd docker
  2. make build
  3. cd ../server
  4. meteor npm install
  5. meteor