Skip to content

Commit e9a56fe

Browse files
committed
Test README fixes
1 parent 7ebc604 commit e9a56fe

2 files changed

Lines changed: 17 additions & 3 deletions

File tree

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,13 +162,22 @@ To cite RawHash, you can use the following BibTeX:
162162
```bibtex
163163
@article{firtina_rawhash_2023,
164164
title = {{RawHash}: {Enabling} {Fast} and {Accurate} {Real}-{Time} {Analysis} of {Raw} {Nanopore} {Signals} for {Large} {Genomes}},
165-
doi = {10.1093/bioinformatics/btad272},
165+
author = {Firtina, Can and Mansouri Ghiasi, Nika and Lindegger, Joel and Singh, Gagandeep and Cavlak, Meryem Banu and Mao, Haiyu and Mutlu, Onur},
166166
journal = {Bioinformatics},
167-
author = {Firtina, Can and Ghiasi, Nika Mansouri and Lindegger, Joel and Singh, Gagandeep and Cavlak, Meryem Banu and Mao, Haiyu and Mutlu, Onur},
167+
volume = {39},
168+
number = {Supplement_1},
169+
pages = {i297-i307},
170+
year = {2023},
171+
month = jun,
168172
year = {2023},
173+
doi = {10.1093/bioinformatics/btad272},
174+
issn = {1367-4811},
175+
url = {https://doi.org/10.1093/bioinformatics/btad272},
169176
}
170177
```
171178

172179
# Acknowledgement
173180

174181
RawHash uses [klib](https://github.com/attractivechaos/klib), some code snippets from [Minimap2](https://github.com/lh3/minimap2) (e.g., pipelining, hash table usage) and [Sigmap](https://github.com/haowenz/sigmap) (e.g., chaining).
182+
183+
We thank [Melina Soysal](https://github.com/melina2200) and [Marie-Louise Dugua](https://github.com/MarieSarahLouise) for their feedback to improve the RawHash implementation and test scripts.

test/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,16 @@ mkdir -p rawhash-env/bin && cd rawhash-env
3535

3636
#Optional Step 0 Creating a conda environment (Note we highly recommend using conda for easy installation of dependencies).
3737
#If not using conda, the packages with the specified versions below (e.g., python=3.6.15) must be installed manually in your environment
38+
conda config --add channels defaults
39+
conda config --add channels bioconda
40+
conda config --add channels conda-forge
41+
conda config --set channel_priority strict
42+
3843
conda create -n rawhash-env python=3.6.15 pip=20.2.3 ont_vbz_hdf_plugin=1.0.1
3944
conda activate rawhash-env
4045

4146
#Installing SRA Toolkit
42-
wget -qO- https://ftp-trace.ncbi.nlm.nih.gov/sra/sdk/current/sratoolkit.current-ubuntu64.tar.gz | tar xzv; cp -r ./sratoolkit.3.0.1-ubuntu64/bin/* bin/; rm -rf sratoolkit.3.0.1-ubuntu64
47+
wget -qO- https://ftp-trace.ncbi.nlm.nih.gov/sra/sdk/3.0.1/sratoolkit.3.0.1-ubuntu64.tar.gz | tar xzv; cp -r ./sratoolkit.3.0.1-ubuntu64/bin/* bin/; rm -rf sratoolkit.3.0.1-ubuntu64
4348

4449
#Step 1 Compiling the tools
4550
#Cloning and compiling RawHash

0 commit comments

Comments
 (0)