Skip to content

Commit e8eb418

Browse files
authored
Merge pull request #16 from hisplan/master
v0.2.9
2 parents 0461c9c + 5e41ec8 commit e8eb418

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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.8"
41+
export SEQC_VERSION="0.2.9"
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.8.
11+
This generates a reference package (STAR index and GTF) using SEQC v0.2.9.
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.8.tar.gz
47-
tar xvzf v0.2.8.tar.gz
48-
cd seqc-0.2.8/
46+
wget https://github.com/dpeerlab/seqc/archive/v0.2.9.tar.gz
47+
tar xvzf v0.2.9.tar.gz
48+
cd seqc-0.2.9/
4949
pip install .
5050
```

src/seqc/rmt_correction.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,8 @@ def _correct_errors(ra, err_rate, p_value=0.05):
414414
# skip if it's already marked as rmt error
415415
if (
416416
ra.data["cell"][idx],
417-
ra.data["rmt"][idx_corrected_rmt],
418417
ra.data["rmt"][idx],
418+
ra.data["rmt"][idx_corrected_rmt],
419419
) in mapping:
420420
continue
421421

src/seqc/version.py

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

0 commit comments

Comments
 (0)