0.0.20
Read bam files quickly into dataframes in Python
See How to Publish an Open-Source Python Package to PyPI
Install
pip install -e . # -e flag means editing affects the installed package
Create sdist and wheel (requires build)
python -m build
Check whether the package archives look fine:
twine check dist/*
Upload to PyPI test server
twine upload -r testpypi dist/*
Chek that the package can be installed from the test server
python -m pip install -i https://test.pypi.org/simple bamread python -c "import bamread; print(bamread.read_bam('Some.bam'))"
Upload to pypi
See act
act -l # list available jobs act -j <job> # run a job act pull_request # run jobs triggered upon pull_request
用于读取和处理BAM(Binary Alignment/Map)格式文件的工具
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
bamread
Read bam files quickly into dataframes in Python
Development
Development
See How to Publish an Open-Source Python Package to PyPI
Install
Create sdist and wheel (requires build)
Check whether the package archives look fine:
Upload to PyPI test server
Chek that the package can be installed from the test server
Upload to pypi
Run github actions locally
See act