Skip to content
Snippets Groups Projects
nextflow.config 877 B
Newer Older
Gervaise Henry's avatar
Gervaise Henry committed
profiles {
  standard {
    includeConfig 'conf/biohpc.config'
  }
  aws_ondemand {
    includeConfig 'conf/aws_ondemand.config'
  }
  aws_spot {
    includeConfig 'conf/aws_spot.config'
  }
}

trace {
  enabled = true
  file = 'pipeline_trace.txt'
  fields = 'task_id,native_id,process,name,status,exit,submit,start,complete,duration,realtime,%cpu,%mem,rss'
}

timeline {
  enabled = true
  file = 'timeline.html'
}
	
report {
  enabled = true
  file = 'report.html'
}

tower {
  accessToken = '3ade8f325d4855434b49aa387421a44c63e3360f'
  enabled = true
Gervaise Henry's avatar
Gervaise Henry committed
}

manifest {
  homePage = 'https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq'
  description = 'This pipeline was created to be a standard mRNA-sequencing analysis pipeline which integrates with the GUDMAP and RBK consortium data-hub.'
  mainScript = 'rna-seq.nf'
  version = 'v0.0.1_indev'
  nextflowVersion = '>=19.09.0'
}