-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warning patrol and description wordsmithing
- Loading branch information
Showing
4 changed files
with
19 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pysam" | ||
description = "pysam - a python module for reading, manipulating and writing genomic data sets." | ||
license = { text = "MIT License" } | ||
version = "0.22.0rc1" | ||
version = "0.22.0rc2" | ||
authors = [ | ||
{ name = "Andreas Heger", email = "[email protected]"} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
#! /usr/bin/python | ||
|
||
'''pysam - a python module for reading, manipulating and writing | ||
'''pysam --- a Python module for reading, manipulating and writing | ||
genomic data sets. | ||
pysam is a lightweight wrapper of the htslib C-API and provides | ||
facilities to read and write SAM/BAM/VCF/BCF/BED/GFF/GTF/FASTA/FASTQ | ||
files as well as access to the command line functionality of the | ||
samtools and bcftools packages. The module supports compression and | ||
random access through indexing. | ||
pysam is a lightweight wrapper of the HTSlib API and provides facilities | ||
to read and write SAM/BAM/CRAM/VCF/BCF/BED/GFF/GTF/FASTA/FASTQ files | ||
as well as access to the command-line functionality of samtools and bcftools. | ||
The module supports compression and random access through indexing. | ||
This module provides a low-level wrapper around the htslib C-API as | ||
using cython and a high-level API for convenient access to the data | ||
within standard genomic file formats. | ||
This module provides a low-level wrapper around HTSlib's C API using Cython | ||
a high-level API for convenient access to the data within standard genomic | ||
file formats. | ||
See: | ||
http://www.htslib.org | ||
https://github.com/pysam-developers/pysam | ||
http://pysam.readthedocs.org/en/stable | ||
https://pysam.readthedocs.io | ||
''' | ||
|
||
import collections | ||
|
@@ -677,6 +675,7 @@ def prebuild_libcsamtools(ext, force): | |
'version': get_pysam_version(), | ||
'description': "pysam", | ||
'long_description': __doc__, | ||
'long_description_content_type': "text/x-rst", | ||
'author': "Andreas Heger", | ||
'author_email': "[email protected]", | ||
'license': "MIT", | ||
|