Skip to content

Commit

Permalink
main doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
a-slide committed Oct 27, 2021
1 parent 75d94be commit b0f6c1a
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion NanoCount/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

__name__ = "NanoCount"
__version__ = "1.0.0.post1"
__version__ = "1.0.0.post2"
__description__ = "NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads"
__url__ = "https://github.com/a-slide/NanoCount/"
__licence__ = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NanoCount v1.0.0.post1
# NanoCount v1.0.0.post2

![NanoCount](./docs/pictures/NanoCount.png)

Expand All @@ -15,7 +15,7 @@

**NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads**

Full documentation is available at https://a-slide.github.io/NanoCount/
Full documentation is available at https://adrienleger.com/NanoCount/

---

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Welcome to NanoCount v1.0.0.post1 documentation
# Welcome to NanoCount v1.0.0.post2 documentation

[NanoCount](pictures/NanoCount.png)

Expand All @@ -22,8 +22,8 @@

#### Align reads

Reads should be aligned to a **transcriptome reference** using **[minimap2](https://github.com/lh3/minimap2)**.
We recommend using the `-N 10` option to retain at least 10 secondary mappings.
Reads must be aligned a transcriptome reference using minimap2 with `-p 0 -N 10` options to retain up to 10 secondary mappings without filtering.
NanoCount will take care of the low score alignments internally.

```
minimap2 -t 4 -ax map-ont -p 0 -N 10 transcriptome.fa.gz reads.fastq.gz | samtools view -bh > aligned_reads.bam
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "1.0.0.post1" %}
{% set version = "1.0.0.post2" %}
{% set name = "NanoCount" %}

package:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
setup(
name="NanoCount",
description="NanoCount estimates transcripts abundance from Oxford Nanopore *direct-RNA sequencing* datasets, using an expectation-maximization approach like RSEM, Kallisto, salmon, etc to handle the uncertainty of multi-mapping reads",
version="1.0.0.post1",
version="1.0.0.post2",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/a-slide/NanoCount/",
Expand Down
2 changes: 1 addition & 1 deletion versipy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version:
a: null
b: null
rc: null
post: 1
post: 2
dev: null
managed_values:
__package_name__: NanoCount
Expand Down
1 change: 1 addition & 0 deletions versipy_history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
2021-09-10 19:44:30.726193 0.4.0.post4 minor doc update
2021-10-26 10:14:30.076292 1.0.0 Release before paper publication in NAR
2021-10-27 09:39:27.221554 1.0.0.post1 minor doc change
2021-10-27 23:26:41.943187 1.0.0.post2 main doc update

0 comments on commit b0f6c1a

Please sign in to comment.