Skip to content

Commit

Permalink
Remove 'defaults' conda channel from docs.
Browse files Browse the repository at this point in the history
Fixes #5601

Signed-off-by: Phil Ewels <[email protected]>
  • Loading branch information
ewels committed Dec 13, 2024
1 parent fc63128 commit be25b17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ name: my-env
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- star=2.5.4a
- bwa=0.7.15
Expand Down Expand Up @@ -105,7 +104,8 @@ Conda environment files can also be used to install Python packages from the [Py
```yaml
name: my-env-2
channels:
- defaults
- conda-forge
- bioconda
dependencies:
- pip
- pip:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ class CondaCacheTest extends Specification {
def hash = CondaCache.sipHash(ENV)
ENV.text = '''
channels:
- conda-forge
- bioconda
- defaults
dependencies:
# Default bismark
- star=2.5.4a
- bwa=0.7.15
- bwa=0.7.15
'''
.stripIndent(true) // https://issues.apache.org/jira/browse/GROOVY-9423
when:
Expand All @@ -119,15 +119,15 @@ class CondaCacheTest extends Specification {
def BASE = Paths.get('/conda/envs')
def ENV = Files.createTempFile('test','.yml')
def hash = CondaCache.sipHash(ENV)
ENV.text = '''
ENV.text = '''
name: my-env-1.1
channels:
- conda-forge
- bioconda
- defaults
dependencies:
# Default bismark
- star=2.5.4a
- bwa=0.7.15
- bwa=0.7.15
'''
.stripIndent(true)

Expand All @@ -150,7 +150,7 @@ class CondaCacheTest extends Specification {
def hash = CondaCache.sipHash(ENV)
ENV.text = '''
star=2.5.4a
bwa=0.7.15
bwa=0.7.15
multiqc=1.2.3
'''
.stripIndent(true) // https://issues.apache.org/jira/browse/GROOVY-9423
Expand Down

0 comments on commit be25b17

Please sign in to comment.