Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ in_dir = test/samples
out_dir = test/build
fa_dir = test/fasta

# Configurable parameters
MEMORY ?= 32GB

# Form Bio workflow deployment
formbio_org := form-bio-solutions
formbio_project := aav-qc-workshop
Expand Down Expand Up @@ -42,9 +45,10 @@ formbio: clean


# Test Nextflow pipeline execution
# Usage: make sc [MEMORY=8GB] # Default: 32GB

sc ss min folder: %: params-local-%.json
nextflow run -profile local main.nf -params-file $<
nextflow run -profile local main.nf -params-file $< --memory '$(MEMORY)'

# Test local execution and outputs

Expand Down
Loading