Skip to content

Commit

Permalink
Improve the README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertRockG committed Nov 14, 2023
1 parent e96f9ba commit 814c4f8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@ bin-release/

# Other files and folders
.settings/
./data/OUT_DIR/*

# Executables
# files with extension
*.swf
*.air
*.ipa
*.apk

*.log
*.fast5
*.fastq
*.fastq.gz
*.fasta
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
# should NOT be excluded as they contain compiler settings and other important
# information for Eclipse / Flash Builder.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ OPTIONS:
-o: Path to the directory where processed data will be stored. This directory will be created if it doesn't exist.
-k: Barcode kits to be used for barcoding.
-m: medaka model for consensus polishing.
-b: GPU memory control for medaka (optional)
-v: Enable verbosity.
-b: GPU memory control for medaka (optional).
-v: Enable verbosity (optional).
```

## Instructions to running fast5pipeline
Expand All @@ -27,15 +27,15 @@ Before using this pipeline, you need to setup the required environment by instal

### Run fast5pipeline

To run this pipeline, kindly follow this instructions from your terminal:
To run this pipeline, kindly follow this instructions in your terminal from your home directory:

```bash
# To get the pipeline source code on your laptop
git clone https://github.com/AlbertRockG/fast5toGenome

# To add fast5pipeline to the PATH
cd fast5Genome/
export PATH="$PWD:$PATH"
# To add fast5pipeline to the PATH if using bash shell
echo "export PATH=$PATH:$HOME/fast5Genome" >> .bashrc
source .bashrc

# To activate the medaka environment, if using conda
conda activate medaka
Expand Down

0 comments on commit 814c4f8

Please sign in to comment.