Skip to content

Commit 0461c9c

Browse files
authored
Merge pull request #13 from hisplan/master
v0.2.8
2 parents 3d0bec0 + 1406fc4 commit 0461c9c

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To process data locally using SEQC, you must install the <a href=https://github.
3838
Once all dependencies have been installed, SEQC can be installed by running:
3939

4040
```bash
41-
export SEQC_VERSION="0.2.6"
41+
export SEQC_VERSION="0.2.8"
4242
wget https://github.com/hisplan/seqc/archive/v${SEQC_VERSION}.tar.gz
4343
tar xvzf v${SEQC_VERSION}.tar.gz
4444
cd seqc-${SEQC_VERSION}

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Generating Reference Packages
1010

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

1313
- Ensembl 86
1414
- Gene annotation file that contains only the reference chromosomes (no scaffolds, no patches)

docs/install-SUSE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ conda install -c bioconda star
4343
## Install SEQC
4444

4545
```
46-
wget https://github.com/dpeerlab/seqc/archive/v0.2.6.tar.gz
47-
tar xvzf v0.2.6.tar.gz
48-
cd seqc-0.2.6/
46+
wget https://github.com/dpeerlab/seqc/archive/v0.2.8.tar.gz
47+
tar xvzf v0.2.8.tar.gz
48+
cd seqc-0.2.8/
4949
pip install .
5050
```

src/seqc/core/run.py

+4
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ def create_read_array(
283283
):
284284
args.filter_low_coverage = False
285285

286+
if args.platform == "ten_x_v2" or args.platform == "ten_x_v3":
287+
log.notify("Setting min_poly_t=0 for 10x v2 & v3")
288+
args.min_poly_t = 0
289+
286290
max_insert_size = args.max_insert_size
287291
if args.filter_mode == "scRNA-seq":
288292
# for scRNA-seq

src/seqc/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.7"
1+
__version__ = "0.2.8"

0 commit comments

Comments
 (0)