-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpixi.toml
More file actions
31 lines (29 loc) · 1.36 KB
/
pixi.toml
File metadata and controls
31 lines (29 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
name = "Swedish Earth Biogenome Project Assembly Pipeline"
version = "0.1.0"
description = "A de novo genome assembly pipeline"
authors = ["Mahesh Binzer-Panchal <mahesh.binzer-panchal@nbis.se>"]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64", "osx-64", "osx-arm64"]
[tasks]
# Run Nextflow directly
test-docker = "nextflow run main.nf -profile docker,test"
test-singularity = "nextflow run main.nf -profile singularity,test"
dev = { cmd = "nextflow run main.nf -profile docker,test,debug --oatkdb database_cache/OatkDB/v20230921", depends-on = [ "fetch-oatkdb" ] }
# Run nf-tests
nftest-docker = "nf-test test tests/main.nf.test --verbose"
nftest-singularity = "nf-test test tests/main.nf.test --verbose --profile singularity"
# Clean up
clean-work = "nextflow clean -f -before last && find work/ -type d -empty -delete"
clean-nf = "git clean -fX && rm -rf .nextflow/ work/ .lineage/"
clean-results = "rm -rf results/"
clean-nftest = "rm -rf .nf-test/"
clean-all = { depends-on = [ "clean-nf", "clean-results", "clean-nftest" ] }
# Stage data dependencies
fetch-oatkdb = { cmd = "mkdir -p database_cache && cd database_cache && git clone --depth 1 https://github.com/c-zhou/OatkDB.git", outputs = [ "database_cache/OatkDB" ] }
[dependencies]
nextflow = ">=25.10.2,<26"
nf-core = ">=3.5.2,<4"
gh = ">=2.83.1,<3"
questionary = ">=2.1.1,<3"
tree = ">=2.2.1,<3"