Skip to content

Commit d07836e

Browse files
authored
Merge pull request #18 from hisplan/master
v0.2.11
2 parents 6df1e33 + 8c37e93 commit d07836e

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
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.10"
41+
export SEQC_VERSION="0.2.11"
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
## Generating Reference Packages
1010

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

13-
- Ensembl 86
13+
- Ensembl 85
1414
- Gene annotation file that contains only the reference chromosomes (no scaffolds, no patches)
1515
- Only these biotypes: 'protein_coding', 'lincRNA', 'IG_V_gene', 'IG_C_gene', 'IG_J_gene', 'TR_C_gene', 'TR_J_gene', 'TR_V_gene', 'TR_D_gene', 'IG_D_gene'
1616
- Not passing anything to `--additional-id-types`
@@ -22,7 +22,7 @@ This generates a reference package (STAR index and GTF) using SEQC v0.2.10.
2222
SEQC index \
2323
-o homo_sapiens \
2424
-f homo_sapiens \
25-
--ensemble-release 93 \
25+
--ensemble-release 85 \
2626
--valid-biotypes protein_coding lincRNA antisense IG_V_gene IG_D_gene IG_J_gene IG_C_gene TR_V_gene TR_D_gene TR_J_gene TR_C_gene \
2727
--read-length 101 \
2828
--folder ./test-data/index/ \
@@ -35,7 +35,7 @@ SEQC index \
3535
SEQC index \
3636
-o homo_sapiens \
3737
-f homo_sapiens \
38-
--ensemble-release 93 \
38+
--ensemble-release 85 \
3939
--valid-biotypes protein_coding lincRNA antisense IG_V_gene IG_D_gene IG_J_gene IG_C_gene TR_V_gene TR_D_gene TR_J_gene TR_C_gene \
4040
--read-length 101 \
4141
--upload-prefix s3://dp-lab-test/seqc/index/86/ \

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.10.tar.gz
47-
tar xvzf v0.2.10.tar.gz
48-
cd seqc-0.2.10/
46+
wget https://github.com/dpeerlab/seqc/archive/v0.2.11.tar.gz
47+
tar xvzf v0.2.11.tar.gz
48+
cd seqc-0.2.11/
4949
pip install .
5050
```

src/seqc/core/run.py

+3
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,9 @@ def create_read_array(
533533
args.output_prefix + "_sparse_molecule_counts.mtx",
534534
args.output_prefix + "_sparse_counts_barcodes.csv",
535535
args.output_prefix + "_sparse_counts_genes.csv",
536+
"raw_feature_bc_matrix/matrix.mtx.gz",
537+
"raw_feature_bc_matrix/barcodes.tsv.gz",
538+
"raw_feature_bc_matrix/features.tsv.gz",
536539
]
537540

538541
if os.path.exists(args.output_prefix + "_cb-correction.csv.gz"):

src/seqc/io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def download_awscli(cls, link, prefix='./', overwrite=True, recursive=False):
136136
'provided link %s was a prefix but download was not called recursively. '
137137
'Please provide a filename or download recursively.' % link)
138138

139-
cmd = 'aws s3 cp %s %s' % (link, prefix)
139+
cmd = 'aws s3 cp --force-glacier-transfer %s %s' % (link, prefix)
140140
if recursive:
141141
cmd += ' --recursive'
142142

src/seqc/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.10"
1+
__version__ = "0.2.11"

0 commit comments

Comments
 (0)