Skip to content

Commit d743fde

Browse files
committed
bookend 1.2.0 update
Finalized setup files for 1.2.0
1 parent 7b4f9fc commit d743fde

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Take a look at the [Bookend publication](https://genomebiology.biomedcentral.com
99
## Installation
1010
Bookend can be installed through the Python Package Index (PyPI) on UNIX systems with Python 3.6+ using the command:
1111
```
12-
pip install bookend-rna
12+
pip install bookend-rna --upgrade
1313
```
1414

1515
If installing from the GitHub source code, perform the following steps:
@@ -23,15 +23,16 @@ Once installed, all utilities can be accessed on the command as bookend subcomma
2323

2424
usage: bookend [subcommand] [options] [input file(s)]
2525
Subcommands (use -h/--help for more info):
26-
26+
2727
label (Label 5' and 3' ends in a FASTQ file)
2828
elr (Convert a BAM/SAM file to the end-labeled read format)
2929
assemble (Assemble transcripts from aligned end-labeled reads)
3030
condense (Partial assembly that leaves keeps all fragments; use for meta-assembly)
3131
classify (Compare an assembly to the transcripts of a reference annotation)
32+
merge (Combine GTF files into a unified annotation)
3233
bedgraph (Write a coverage Bedgraph file of end-labeled reads)
3334
fasta (Write a transcript FASTA file from an annotation and genome)
34-
35+
3536
--end-labeled read (ELR) operations--
3637
elr-sort
3738
elr-subset
@@ -44,4 +45,4 @@ Once installed, all utilities can be accessed on the command as bookend subcomma
4445
elr-to-bed
4546
sam-to-sj
4647
sj-to-bed
47-
sj-merge
48+
sj-merge

bookend/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '1.1.0'
2-
__updated__ = '04.20.2023'
3-
__date__ = '04.20.2023'
1+
__version__ = '1.2.0'
2+
__updated__ = '09.19.2023'
3+
__date__ = '09.19.2023'

bookend_rna.egg-info/PKG-INFO

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: bookend-rna
3-
Version: 1.1.2
3+
Version: 1.2.0
44
Summary: End-guided transcript assembler for short and long RNA-seq reads.
55
Home-page: https://github.com/Gregor-Mendel-Institute/bookend
66
Author: Michael A. Schon
@@ -26,7 +26,7 @@ Take a look at the [Bookend publication](https://genomebiology.biomedcentral.com
2626
## Installation
2727
Bookend can be installed through the Python Package Index (PyPI) on UNIX systems with Python 3.6+ using the command:
2828
```
29-
pip install bookend-rna
29+
pip install bookend-rna --upgrade
3030
```
3131

3232
If installing from the GitHub source code, perform the following steps:
@@ -40,15 +40,16 @@ Once installed, all utilities can be accessed on the command as bookend subcomma
4040

4141
usage: bookend [subcommand] [options] [input file(s)]
4242
Subcommands (use -h/--help for more info):
43-
43+
4444
label (Label 5' and 3' ends in a FASTQ file)
4545
elr (Convert a BAM/SAM file to the end-labeled read format)
4646
assemble (Assemble transcripts from aligned end-labeled reads)
4747
condense (Partial assembly that leaves keeps all fragments; use for meta-assembly)
4848
classify (Compare an assembly to the transcripts of a reference annotation)
49+
merge (Combine GTF files into a unified annotation)
4950
bedgraph (Write a coverage Bedgraph file of end-labeled reads)
5051
fasta (Write a transcript FASTA file from an annotation and genome)
51-
52+
5253
--end-labeled read (ELR) operations--
5354
elr-sort
5455
elr-subset
@@ -61,6 +62,6 @@ Once installed, all utilities can be accessed on the command as bookend subcomma
6162
elr-to-bed
6263
sam-to-sj
6364
sj-to-bed
64-
sj-merge
65+
sj-merge
6566

6667

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '1.1.0'
2-
__updated__ = '04.20.2023'
3-
__date__ = '04.20.2023'
1+
__version__ = '1.2.0'
2+
__updated__ = '09.19.2023'
3+
__date__ = '09.19.2023'

dist/bookend_rna-1.2.0.tar.gz

1.23 MB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def run(self):
3838

3939
setup(
4040
name="bookend_rna", # Replace with your own username
41-
version="1.1.2",
41+
version="1.2.0",
4242
author="Michael A. Schon",
4343
author_email="michael.schon@wur.nl",
4444
description="End-guided transcript assembler for short and long RNA-seq reads.",

0 commit comments

Comments
 (0)