Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ A regular expression pointing to a set of paired-end fastQ files.
nextflow run ikmb/hla --reads '/path/to/*_R{1,2}_001.fastq.gz'
```

### `--tools`
### `--tools` [ default: hisat,xhla,hlascan ]

This pipeline supports several competing tool chains for HLA calling. Specify them with this option as a comma-separated list.

Expand All @@ -65,8 +65,9 @@ nextflow run ikmb/hla --samples Samples.csv --tools 'hisat,xhla,optitype'
Supported tools:

* [xHLA](https://github.com/humanlongevity/HLA) (xhla)
* [Hisat-genotype](https://daehwankimlab.github.io/hisat-genotype/) (hisat) SLOW!!
* [Hisat-genotype](https://daehwankimlab.github.io/hisat-genotype/) (hisat) Slow on anything other than targetted sequencing!
* [Optitype](https://github.com/FRED-2/OptiType) (optitype)
* [HLAscan](https://github.com/SyntekabioTools/HLAscan) (hlascan)

### `--run_name`

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ params {

email = null

tools = "xhla,optitype"
tools = "xhla,hisat,hlascan"

plaintext_email = false

Expand Down