Diff of /conf/test_stub.config [000000] .. [13a70a]

Switch to unified view

a b/conf/test_stub.config
1
// for now it needs either crg config or local config to be given by the user
2
// TODO make this config stand alone. No need for other configs.
3
4
stubRun = true
5
6
params {
7
    config_profile_name        = 'Test stub profile'
8
    config_profile_description = 'stub run to check pipeline function'
9
10
    // Input data
11
    data         = "https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/deepmodeloptim/testdata/titanic/titanic_stimulus.csv"
12
    data_config  = "https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/deepmodeloptim/testdata/titanic/titanic.yaml"
13
    model        = "https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/deepmodeloptim/testdata/titanic/titanic_model.py"
14
    model_config = "https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/deepmodeloptim/testdata/titanic/titanic_model_cpu.yaml"
15
16
}
17
18
process {
19
    // Limit resources so that this can run on GitHub Actions
20
    resourceLimits = [
21
        cpus: 2,
22
        memory: 6.GB,
23
        time: 6.h
24
    ]
25
    container = 'quay.io/biocontainers/gawk:5.1.0'
26
}