Skip to content

Commit 8cd6961

Browse files
authored
Merge pull request #112 from KumarLabJax/bug/filter-resources
Adding resource tag for filtering task
2 parents 6a1cea4 + 03e904e commit 8cd6961

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manifest {
66
mainScript = "main.nf"
77
defaultBranch = 'main'
88
nextflowVersion = "!>=22.04.3"
9-
version = "0.2.2"
9+
version = "0.2.3"
1010
contributors = [
1111
[name: 'Brian Geuther'],
1212
[name: 'Alexander Berger-Liedtka']
@@ -25,7 +25,7 @@ params {
2525
* - path_depth: depth of the path to preserve in the output
2626
* - pubdir: directory to publish the results (defaults in profiles)
2727
*/
28-
version = '0.2.2'
28+
version = '0.2.3'
2929
input_batch = null
3030
ignore_invalid_inputs = false
3131
profile = 'sumner2'

nextflow/modules/single_mouse.nf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ process QC_SINGLE_MOUSE {
103103
*/
104104
process FILTER_LARGE_POSES {
105105
label "tracking"
106+
// Segmentation is the largest table that needs to be read in, so the RAM will match
107+
// TODO: time will be an overestimate
108+
label "r_single_seg"
106109

107110
input:
108111
tuple path(in_video), path(in_pose_file)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mouse-tracking"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Runtime environment for mouse tracking experiments"
55
requires-python = ">=3.10,<3.11"
66
packages = ["src/mouse_tracking"]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)