Skip to content

Commit

Permalink
changing stub profile
Browse files Browse the repository at this point in the history
  • Loading branch information
replikation committed Jun 17, 2021
1 parent c04a725 commit da1a279
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Syntax_check
name: DryRun

on: [push]

Expand All @@ -12,8 +12,8 @@ jobs:
- name: fasta dry run
run: |
touch genome.fasta
./nextflow run poreCov.nf --fasta genome.fasta -stub -profile local,stub
./nextflow run poreCov.nf --fasta genome.fasta -stub -profile stub --cores 2 --max_cores 2
- name: fastq dry run
run: |
touch reads.fastq
./nextflow run poreCov.nf --fastq reads.fastq -stub -profile local,stub
./nextflow run poreCov.nf --fastq reads.fastq -stub -profile stub --cores 2 --max_cores 2
1 change: 1 addition & 0 deletions poreCov.nf
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ if ( params.help ) { exit 0, helpMSG() }
workflow.profile.contains('nanozoo') ||
workflow.profile.contains('ukj_cloud') ||
workflow.profile.contains('local') ||
workflow.profile.contains('stub') ||
workflow.profile.contains('slurm')
) { "executer selected" }
else { exit 1, "No executer selected: -profile EXECUTER,ENGINE" }
Expand Down

0 comments on commit da1a279

Please sign in to comment.