Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ logs/*
seperate_scripts/*
conf/[0-9]*
work/*
*scale*
3 changes: 2 additions & 1 deletion modules/local/tools/cellbender/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ process CELLBENDER {
--output cellbender_output.h5 \\
--epochs 150 \\
--expected-cells ${meta.expected_cells} \\
--fpr 0.01
--fpr 0.01 \\
${params.cellbender_extraargs ?: ''}
"""
}
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ params {

// Filtering parameters
perform_cellbender = false
cellbender_extraargs = null

// Parameters for external pipelines
splitpipe_installation = null
Expand Down
Loading