Skip to content

Commit 577318c

Browse files
authored
Merge pull request #117 from KumarLabJax/task/update-jabs-postprocess-version
Task/update jabs postprocess version
2 parents 46ab1d4 + 0a99b48 commit 577318c

File tree

4 files changed

+906
-11
lines changed

4 files changed

+906
-11
lines changed

nextflow.config

Lines changed: 6 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.3"
9+
version = "0.2.4"
1010
contributors = [
1111
[name: 'Brian Geuther'],
1212
[name: 'Alexander Berger-Liedtka']
@@ -25,7 +25,6 @@ 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.3'
2928
input_batch = null
3029
ignore_invalid_inputs = false
3130
profile = 'sumner2'
@@ -35,6 +34,11 @@ params {
3534
location = 'local'
3635
path_depth = 2
3736

37+
/* Image Versions */
38+
image_version = '0.2.4'
39+
jabs_postprocess_version = '0.5.2'
40+
jabs_behavior_version = '0.36.1'
41+
3842
/*
3943
* Parameters for the single mouse pipeline
4044
* - align_videos: align videos to a common start time

nextflow/configs/profiles/sumner2.config

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -195,16 +195,16 @@ process {
195195
* Runtime options
196196
*/
197197
withLabel: "tracking" {
198-
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/runtime/v${params.version}/latest.sif"
198+
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/runtime/v${params.image_version}/latest.sif"
199199
}
200200
withLabel: "jabs_classify" {
201-
container = "/projects/kumar-lab/meta/images/JABS-behavior-classifier/headless/v0.36.1/latest.sif"
201+
container = "/projects/kumar-lab/meta/images/JABS-behavior-classifier/headless/v${params.jabs_behavior_version}/latest.sif"
202202
}
203203
withLabel: "jabs_postprocess" {
204-
container = "/projects/kumar-lab/meta/images/JABS-postprocess/jabs-postprocess/v0.5.1/latest.sif"
204+
container = "/projects/kumar-lab/meta/images/JABS-postprocess/jabs-postprocess/v${params.jabs_postprocess_version}/latest.sif"
205205
}
206206
withLabel: "jabs_table_convert" {
207-
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/RBase/v${params.version}/latest.sif"
207+
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/RBase/v${params.image_version}/latest.sif"
208208
}
209209
withLabel: "gait" {
210210
container = "/projects/kumar-lab/multimouse-pipeline/nextflow-containers/gait-pipeline-2025-03-27.sif"
@@ -213,14 +213,14 @@ process {
213213
container = "/projects/kumar-lab/multimouse-pipeline/nextflow-containers/vfi-2025-03-27.sif"
214214
}
215215
withLabel: "sleap" {
216-
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/sleap-1.4.1/v${params.version}/latest.sif"
216+
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/sleap-1.4.1/v${params.image_version}/latest.sif"
217217
}
218218
withLabel: "sleap_io" {
219-
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/sleap-io-0.2.0/v${params.version}/latest.sif"
219+
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/sleap-io-0.2.0/v${params.image_version}/latest.sif"
220220
}
221221
withLabel: "rclone" {
222222
// executor.queueSize = 1
223-
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/rclone/v${params.version}/latest.sif"
223+
container = "/projects/kumar-lab/meta/images/mouse-tracking-runtime/rclone/v${params.image_version}/latest.sif"
224224
cpus = 1
225225
time = '48h'
226226
memory = '12GB'

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mouse-tracking"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Runtime environment for mouse tracking experiments"
55
requires-python = ">=3.10,<3.11"
66
packages = ["src/mouse_tracking"]
@@ -128,3 +128,9 @@ test = [
128128
lint = [
129129
"ruff>=0.11.2",
130130
]
131+
docs = [
132+
"mike>=2.1.3",
133+
"mkdocs-autorefs>=1.4.3",
134+
"mkdocs-jupyter>=0.25.1",
135+
"mkdocs-material>=9.6.22",
136+
]

0 commit comments

Comments
 (0)