Skip to content

Commit

Permalink
Merge pull request #18 from B-UMMI/dev-dsl2
Browse files Browse the repository at this point in the history
LMAS 2.0.0: Update to DSL2
  • Loading branch information
cimendes authored Dec 10, 2021
2 parents 5ff4bcd + a6efa74 commit b528669
Show file tree
Hide file tree
Showing 29 changed files with 1,856 additions and 1,331 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci_nextflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ jobs:
--reference "test/data/tiny_reference.fasta" --max_cpus 2 --max_memory 4.GB \
--abyss false --bcalm false --gatb_minia false --idba false --metahipmer2 false \
--minia false --megahit false --metaspades false --spades false --unicycler false \
--velvetoptimiser false
--velvetoptimiser false
FILE=report/index.html
if [ ! -f "$FILE" ]; then echo "Run failed!"; exit 1; else echo "Run successful!"; fi
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,4 @@ docs/resources/.DS_Store
.DS_Store
results/
report/
!modules/
14 changes: 14 additions & 0 deletions LMAS
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env bash

# This is a wrapper around LMAS-nf.
# By default `LMAS` will attempt to execute the main Nextflow pipeline.
# If no user input is provided, it prints the help message

# If no user input, print usage
if [[ $# == 0 ]]; then
nextflow run main.nf --help
exit
fi

# Run the pipeline
nextflow run main.nf $@
Loading

0 comments on commit b528669

Please sign in to comment.