用Python实现HLA的ARD约简

py-ard的Python项目详细描述


皮亚德

https://img.shields.io/pypi/v/py-ard.svgDocumentation Status

用python实现HLA的ARD约简

从源安装

python3 -m venv venv
source venv/bin/activate

python setup.py install

从PyPi安装

^{pr2}$

测试

通过behave框架在本地运行行为驱动开发(BDD)测试, 您需要设置一个虚拟环境。请参见从源安装

# Install test dependencies
pip install --upgrade pip
pip install -r test-requirements.txt

# Running Behave and all BDD tests
behave

示例

importpyard# Initialize ARD object with a version of IMGT HLA databaseard=pyard.ARD(3290)# You can specify a data directory for temp files# ard = pyard.ARD('3290', data_dir='/tmp/py-ard')# Initialize with latest IMGT HLA databaseard=pyard.ARD()# You can choose to refresh the MAC code for previously used versions# ard =  pyard.ARD(3290, refresh_mac=True)# Allele to reduceallele="A*01:01:01"ard.redux(allele,'G')# 'A*01:01:01G'ard.redux(allele,'lg')# 'A*01:01g'ard.redux(allele,'lgx')# 'A*01:01'ard.redux_gl("A*01:01/A*01:01N+A*02:AB^B*07:02+B*07:AB","G")# 'B*07:02:01G+B*07:02:01G^A*01:01:01G+A*02:01:01G/A*02:02'# py-ard can also reduce serology based typingsard.redux_gl('HLA-A*10^HLA-A*9','lg')# 'HLA-A*24:19g/HLA-A*24:22g^HLA-A*26:01g/HLA-A*26:10g/HLA-A*26:15g/HLA-A*26:92g/HLA-A*66:01g/HLA-A*66:03g'

命令行工具

# Import the latest IMGT database
$ pyard-import
Created Latest py-ard database

# Import particular version of IMGT database
$ pyard-import --import-db-version 3.29.0
Created py-ard version 3290 database

# Import particular version of IMGT database and
# replace the v2 to v3 mapping table
$ pyard-import --import-db-version 3.29.0 --v2-to-v3-mapping map2to3.csv
Created py-ard version 3290 database
Updated v2_mapping table with 'map2to3.csv' mapping file.

# Reduce a gl string from command line
$ pyard --gl 'A*01:AB' -r lgx
A*01:01/A*01:02

$ pyard --gl 'DRB1*08:XX' -r G
DRB1*08:01:01G/DRB1*08:02:01G/DRB1*08:03:02G/DRB1*08:04:01G/DRB1*08:05/ ...

$ pyard -v 3290 --gl 'A1' -r lgx
A*01:01/A*01:02/A*01:03/A*01:06/A*01:07/A*01:08/A*01:09/A*01:10/A*01:12/ ...

历史

  • PyPI的第一个版本。在

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java Jsonify使用Jackson来定义嵌套对象   在Swing中禁用java图形调试   java Selenium Webdriver拖放在Jenkins上不起作用   java我对一个显示器的问题有一个非常不切实际的询问   java增强的“for”循环导致ArrayIndexOutOfBoundsException   ArrayAdapter适用于Java中的安卓编程,字符串数组   linux在Ubuntu上通过PulseAudio播放Java音频文件时出错   java在Spring应用程序中加载内部(类路径)和外部属性文件   java使用Maven连接到mySQL   Java应用程序的设计   websocket在电报api java中与dc的连接   java XMLStreamException,因为xml中的(&N)   java从控制台输出到JTextArea   Java导出文本文件   java实现parseInt方法   java为什么servlet容器会同步对特定资源/servlet的多个请求的访问?   循环中的Java“while”变量   用Java编程一个国际象棋游戏,gameOver布尔不起作用   java如何获得真正的JPanel大小?