Skip to content

Commit

Permalink
14 remove defaults channel (#15)
Browse files Browse the repository at this point in the history
* remove default channel

* fix typo

* update dehosting conda env

* fix name of dehosting_index param in docs

* bump version

---------

Co-authored-by: Dan Fornika <dfornika@gmail.com>
  • Loading branch information
JamesZlosnik and dfornika authored Dec 17, 2024
1 parent f498d8e commit 72fe4ff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ that align with sufficient quality and specificity.
1. Activate the conda environment that is used by this pipeline for dehosting.

```
conda activate basic-sequence-qc-dehosting-6e4260b30b21d1dbd469b1b1e0f20628
conda activate basic-sequence-qc-dehosting-eeb6f6f753e1d37317d1d06b4e3141d5
```

2. Download (fetch) the default reference genome (`human-t2t-hla`)
Expand Down Expand Up @@ -111,7 +111,7 @@ nextflow run BCCDC-PHL/basic-sequence-qc \
--cache ~/.conda/envs \
--fastq_input /path/to/fastq_input \
--dehost \
--outidr /path/to/output-dir
--outdir /path/to/output-dir
```

By default, the `human-t2t-hla` reference will be used. To use an alternative reference, include the `--dehosting_index` flag along
Expand All @@ -123,8 +123,8 @@ nextflow run BCCDC-PHL/basic-sequence-qc \
--cache ~/.conda/envs \
--fastq_input /path/to/fastq_input \
--dehost \
--dehosting_reference human-t2t-hla-argos985-mycob140 \
--outidr /path/to/output-dir
--dehosting_index human-t2t-hla-argos985-mycob140 \
--outdir /path/to/output-dir
```

## Output
Expand Down
1 change: 0 additions & 1 deletion environments/dehosting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: basic-sequence-qc-dehosting
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- python=3
- hostile=1.1.0
1 change: 0 additions & 1 deletion environments/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: basic-sequence-qc
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- python=3
- fastp=0.23.4
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ manifest {
description = 'Basic Sequence QC'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
version = '0.3.0'
version = '0.3.1'
}


Expand Down

0 comments on commit 72fe4ff

Please sign in to comment.