Skip to content

Commit

Permalink
Merge pull request #13 from hisplan/master
Browse files Browse the repository at this point in the history
v0.2.8
  • Loading branch information
hisplan authored Oct 24, 2020
2 parents 3d0bec0 + 1406fc4 commit 0461c9c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To process data locally using SEQC, you must install the <a href=https://github.
Once all dependencies have been installed, SEQC can be installed by running:

```bash
export SEQC_VERSION="0.2.6"
export SEQC_VERSION="0.2.8"
wget https://github.com/hisplan/seqc/archive/v${SEQC_VERSION}.tar.gz
tar xvzf v${SEQC_VERSION}.tar.gz
cd seqc-${SEQC_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Generating Reference Packages

This generates a reference package (STAR index and GTF) using SEQC v0.2.6.
This generates a reference package (STAR index and GTF) using SEQC v0.2.8.

- Ensembl 86
- Gene annotation file that contains only the reference chromosomes (no scaffolds, no patches)
Expand Down
6 changes: 3 additions & 3 deletions docs/install-SUSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ conda install -c bioconda star
## Install SEQC

```
wget https://github.com/dpeerlab/seqc/archive/v0.2.6.tar.gz
tar xvzf v0.2.6.tar.gz
cd seqc-0.2.6/
wget https://github.com/dpeerlab/seqc/archive/v0.2.8.tar.gz
tar xvzf v0.2.8.tar.gz
cd seqc-0.2.8/
pip install .
```
4 changes: 4 additions & 0 deletions src/seqc/core/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,10 @@ def create_read_array(
):
args.filter_low_coverage = False

if args.platform == "ten_x_v2" or args.platform == "ten_x_v3":
log.notify("Setting min_poly_t=0 for 10x v2 & v3")
args.min_poly_t = 0

max_insert_size = args.max_insert_size
if args.filter_mode == "scRNA-seq":
# for scRNA-seq
Expand Down
2 changes: 1 addition & 1 deletion src/seqc/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.7"
__version__ = "0.2.8"

0 comments on commit 0461c9c

Please sign in to comment.