Skip to content

Commit ec26324

Browse files
committed
adding base seqera
1 parent 8524f98 commit ec26324

2 files changed

Lines changed: 54 additions & 0 deletions

File tree

conf/seqera.config

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3+
Nextflow config file for running minimal tests
4+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5+
Defines input files and everything required to run a fast and simple pipeline test.
6+
7+
Use as follows:
8+
nextflow run https://github.com/jhuapl-bio/taxtriage -latest -profile test,docker -r main
9+
10+
----------------------------------------------------------------------------------------
11+
*/
12+
aws.client.anonymous = false
13+
14+
params {
15+
config_profile_name = 'MCE profile for the cloud'
16+
config_profile_description = 'Default profile for running MCE analysis on a variety of sample types on seqera tower'
17+
18+
// Limit resources so that this can run on GitHub Actions
19+
max_cpus = 16
20+
max_time = '24.h'
21+
22+
// Input data
23+
// TODO nf-core: Specify the paths to your test data on nf-core/test-datasets
24+
// TODO nf-core: Give any required params for the test so that command line flags are not needed
25+
input = 'https://raw.githubusercontent.com/jhuapl-bio/taxtriage/main/examples/Samplesheet.csv'
26+
27+
// Genome references
28+
skip_plots = false
29+
download_db = true
30+
remove_taxids = "9606"
31+
ignore_missing = true
32+
skip_denovo = true
33+
skip_refpull = false
34+
demux = true
35+
remove_commensal = true
36+
classifiers = 'kraken2'
37+
outdir = 'test_output'
38+
top_hits_count = 20
39+
taxtab = 'default'
40+
default_download = true
41+
annotate = true
42+
db = 's3://nftass/databases/k2_standard_20230605/'
43+
top_per_taxa = '10239:20:S 2:20:S 4751:20:S'
44+
outdir = 'test_output'
45+
k2_minimum_hit_groups = 3
46+
min_reads_align = 3
47+
low_memory = false
48+
split_prefix = false
49+
min_conf = null
50+
compress_species = false
51+
remove_reference_file = "s3://nftass/databases/references/HomoSapiens/GrCh38/genome.fa"
52+
minmapq = 4
53+
}

nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ profiles {
369369
local { includeConfig 'conf/local.config' }
370370
mce { includeConfig 'conf/mce.config' }
371371
mce_seqera { includeConfig 'conf/mce_seqera.config' }
372+
seqera { includeConfig 'conf/seqera.config' }
372373
}
373374
apptainer.registry = 'quay.io'
374375
docker.registry = 'quay.io'

0 commit comments

Comments
 (0)