aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 12 insertions, 8 deletions
diff --git a/README.md b/README.md
index 8a5a6dd..b0b22ff 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,13 @@
# Sequence uploader
-This repository provides a sequence uploader for the COVID-19 Virtual Biohackathon's Public Sequence Resource project. You can use it to upload the genomes of SARS-CoV-2 samples to make them publicly and freely available to other researchers.
+This repository provides a sequence uploader for the COVID-19 Virtual
+Biohackathon's Public Sequence Resource project. There are two
+versions, one that runs on the command line and another that acts as
+web interface. You can use it to upload the genomes of SARS-CoV-2
+samples to make them publicly and freely available to other
+researchers.
+
+![alt text](./image/website.png "Website")
To get started, first [install the uploader](#installation), and use the `bh20-seq-uploader` command to [upload your data](#usage).
@@ -59,7 +66,7 @@ sudo apt install -y virtualenv git libcurl4-openssl-dev build-essential python3-
pip3 install --user git+https://github.com/arvados/bh20-seq-resource.git@master
```
-3. **Make sure the tool is on your `PATH`.** THe `pip3` command will install the uploader in `.local/bin` inside your home directory. Your shell may not know to look for commands there by default. To fix this for the terminal you currently have open, run:
+3. **Make sure the tool is on your `PATH`.** The `pip3` command will install the uploader in `.local/bin` inside your home directory. Your shell may not know to look for commands there by default. To fix this for the terminal you currently have open, run:
```sh
export PATH=$PATH:$HOME/.local/bin
@@ -126,10 +133,10 @@ For running/developing the uploader with GNU Guix see [INSTALL.md](./doc/INSTALL
# Usage
-Run the uploader with a FASTA file and accompanying metadata file in [JSON-LD format](https://json-ld.org/):
+Run the uploader with a FASTA or FASTQ file and accompanying metadata file in JSON or YAML:
```sh
-bh20-seq-uploader example/sequence.fasta example/metadata.json
+bh20-seq-uploader example/sequence.fasta example/metadata.yaml
```
## Workflow for Generating a Pangenome
@@ -174,7 +181,4 @@ pip3 install gunicorn
gunicorn bh20simplewebuploader.main:app
```
-This runs on [http://127.0.0.1:8000/](http://127.0.0.1:8000/) by default, but can be adjusted with various [gunicorn options](http://docs.gunicorn.org/en/latest/run.html#commonly-used-arguments)
-
-
-
+This runs on [http://127.0.0.1:8000/](http://127.0.0.1:8000/) by default, but can be adjusted with various [gunicorn options](http://docs.gunicorn.org/en/latest/run.html#commonly-used-arguments).