Skip to content

Commit

Permalink
Merge pull request #800 from AlexsLemonade/development
Browse files Browse the repository at this point in the history
Merge changes from #799 into main
  • Loading branch information
jashapiro authored Nov 4, 2024
2 parents aea4c80 + cc50b09 commit b4fc58c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/export-anndata.nf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ workflow sce_to_anndata {
// number of cells are stored in each metadata.json file
.filter{
def cells = Utils.getMetaVal(file(it[3]), "${it[2]}_cells");
cells == '' || cells > 1 // if no cell count, keep file for testing, otherwise require at least 2 cells
cells == '' || cells > 2 // if no cell count, keep file for testing, otherwise require at least 3 cells
}
// remove metadata.json file from tuple
.map{it.dropRight(1)}
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ profiles {
standard {
process.executor = 'local'
docker.enabled = true
docker.userEmulation = true
docker.fixOwnership = true
}
// AWS batch profile with autoscaling disk
batch {
Expand Down

0 comments on commit b4fc58c

Please sign in to comment.