项目作者: griffithlab

项目描述 :
extraction of CIViC variants into the clinvar submission format
高级语言: Python
项目地址: git://github.com/griffithlab/civic2clinvar.git
创建时间: 2018-04-15T16:02:57Z
项目社区:https://github.com/griffithlab/civic2clinvar

开源协议:MIT License

下载


civic2clinvar

civic2clinvar is a python-based command line utility for extracting CIViC assertions and translating them into ClinVar records.

Installation

$ pip install civic2clinvar

Usage

  1. $ civic2clinvar --help
  2. Usage: civic2clinvar [OPTIONS] ASSERTION_IDS
  3. This command generates a ClinVar-formatted csv file from a specified set
  4. of CIViC assertions.
  5. ASSERTION_IDS are a comma-separated list of assertions, and accepts
  6. integer ranges. Example usage:
  7. civic2clinvar 1,3-5
  8. The above command outputs a ClinVar submission form describing CIViC
  9. assertions 1, 3, 4, and 5 to clinvar.csv (the default output file). Output
  10. destination may be controlled with the --out option, detailed below.
  11. CIViC assertions that are rejected or pending are skipped.
  12. Options:
  13. --aid-file FILENAME Optional file of newline-separated assertion IDs. This
  14. option is mutually exclusive with the ASSERTION_IDS
  15. argument.
  16. -o, --out FILENAME Output file (default: clinvar.csv), use '-' for STDOUT
  17. --help Show this message and exit.