Skip to content

Commit 34396d5

Browse files
authored
Merge pull request #224 from pachterlab/devel
Release version 0.27.3 → 0.28.0
2 parents 14a18ef + 179a089 commit 34396d5

36 files changed

+7147
-4860
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push]
55
jobs:
66
check-code:
77
name: Check code quality
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout branch
1111
uses: actions/checkout@master
@@ -19,10 +19,10 @@ jobs:
1919
- name: Check code quality
2020
run: make check
2121
build:
22-
runs-on: ubuntu-18.04
22+
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
python: [3.6, 3.7, 3.8, 3.9 ]
25+
python: [3.7, 3.8, 3.9 ]
2626
os: [ubuntu-20.04]
2727
name: Test on Python ${{ matrix.python }}
2828
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
release-to-pypi:
99
name: Release to Pypi
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout branch
1313
uses: actions/checkout@master

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ instance/
6363
# Scrapy stuff:
6464
.scrapy
6565

66+
# Mac stuff:
67+
.DS_Store
68+
6669
# Sphinx documentation
6770
docs/_build/
6871
docs/api/
@@ -104,4 +107,5 @@ venv.bak/
104107
# mypy
105108
.mypy_cache/
106109
.DS_Store
107-
.vscode/
110+
.vscode/
111+
.Rhistory

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# kb-python
2-
![github version](https://img.shields.io/badge/Version-0.27.3-informational)
3-
[![pypi version](https://img.shields.io/pypi/v/kb-python)](https://pypi.org/project/kb-python/0.27.3/)
2+
![github version](https://img.shields.io/badge/Version-0.28.0-informational)
3+
[![pypi version](https://img.shields.io/pypi/v/kb-python)](https://pypi.org/project/kb-python/0.28.0/)
44
![python versions](https://img.shields.io/pypi/pyversions/kb_python)
55
![status](https://github.com/pachterlab/kb_python/workflows/CI/badge.svg)
66
[![codecov](https://codecov.io/gh/pachterlab/kb_python/branch/master/graph/badge.svg)](https://codecov.io/gh/pachterlab/kb_python)
@@ -59,10 +59,14 @@ kb ref -i index.idx -g t2g.txt -f1 transcriptome.fa <GENOME> <GENOME_ANNOTATION>
5959
- For example, the zebrafish genome annotation file is hosted by [ensembl](https://uswest.ensembl.org/Danio_rerio/Info/Index) and can be downloaded [here](http://ftp.ensembl.org/pub/release-107/gtf/danio_rerio/Danio_rerio.GRCz11.107.gtf.gz)
6060
- **Note:** The latest genome annotation and genome file for every species on ensembl can be found with the [`gget`](https://github.com/pachterlab/gget) command-line tool.
6161

62+
Prebuilt indices are available at https://github.com/pachterlab/kallisto-transcriptome-indices
63+
6264
#### Examples
6365
```bash
64-
# Index the zebrafish transcriptome genome.fa.gz annotation.gtf.gz
66+
# Index the transcriptome from genome FASTA (genome.fa.gz) and GTF (annotation.gtf.gz)
6567
$ kb ref -i index.idx -g t2g.txt -f1 transcriptome.fa genome.fa.gz annotation.gtf.gz
68+
# An example for downloading a prebuilt reference for mouse
69+
$ kb ref -d mouse -i index.idx -g t2g.txt
6670
```
6771
---
6872
### `kb count`: pseudoalign and count reads
@@ -93,9 +97,9 @@ The `kb info` command prints out package information including the version of `k
9397

9498
```bash
9599
$ kb info
96-
kb_python 0.27.3 ...
97-
kallisto: 0.48.0 ...
98-
bustools: 0.41.0 ...
100+
kb_python 0.28.0 ...
101+
kallisto: 0.50.1 ...
102+
bustools: 0.43.1 ...
99103
...
100104
```
101105
---

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ sphinx>=3.3.1
77
sphinx-autoapi>=1.5.1
88
sphinx_rtd_theme>=0.5.0
99
twine>=2.0.0
10-
wheel==0.34.2
10+
wheel==0.38.1
1111
yapf==0.30.0

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = 'Kyung Hoi (Joseph) Min'
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = '0.27.3'
27+
release = '0.28.0'
2828
master_doc = 'index'
2929

3030
# -- General configuration ---------------------------------------------------

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to kb-python's documentation!
77
=====================================
88

9-
This page contains **DEVELOPER** documentation for ``kb-python`` version ``0.27.3``.
9+
This page contains **DEVELOPER** documentation for ``kb-python`` version ``0.28.0``.
1010
For user documentation and tutorials, please go to `kallisto | bustools <https://www.kallistobus.tools/>`_.
1111

1212
Development Prerequisites

kb_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.27.3'
1+
__version__ = '0.28.0'
84.3 KB
Binary file not shown.
914 KB
Binary file not shown.

0 commit comments

Comments
 (0)