Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 'defaults' conda channel from docs. #5607

Merged
merged 3 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
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
Loading