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
5 changes: 4 additions & 1 deletion nextflow/modules/jabs_classifiers.nf
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,15 @@ process BEHAVIOR_TABLE_TO_FEATURES {
*
* @return merged_bout_tables List of paths to merged bout tables, one per behavior.
* @return merge_log Path to the log file detailing the merge process.
*
* @publish ./results/merged_behavior_tables Merged behavior bout tables
* @publish ./results/merged_behavior_tables Merge log file
*/
process AGGREGATE_BOUT_TABLES {
label "jabs_table_convert"
label "r_jabs_table_convert"

publishDir "${params.outdir}/merged_behavior_tables", mode: 'copy'
publishDir "${params.pubdir}/merged_behavior_tables", mode: 'copy'

input:
path bout_tables
Expand Down
3 changes: 2 additions & 1 deletion nextflow/workflows/feature_generation.nf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ include { EXTRACT_FECAL_BOLI_BINS } from "${projectDir}/nextflow/modules/fecal_b
*
* @return path gait_results The channel of generated gait feature files.
* @return path morphometrics_results The channel of generated morphometric feature files.
* @return path merged_bout_tables The channel of merged bout tables from JABS classifiers.
*
* @publish ./results/ Gait feature files
* @publish ./results/ Morphometric feature files
Expand Down Expand Up @@ -128,7 +129,7 @@ workflow SINGLE_MOUSE_V6_FEATURES {
.map { bout_table, summary_table -> bout_table }
.flatten()
.collect()
merged_bout_tables = AGGREGATE_BOUT_TABLES(all_bout_tables)
merged_bout_tables = AGGREGATE_BOUT_TABLES(all_bout_tables).merged_bout_tables

// Combine table data into feature file
all_summary_tables = heuristic_tables
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mouse-tracking"
version = "0.1.1"
version = "0.1.2"
description = "Runtime environment for mouse tracking experiments"
requires-python = ">=3.10,<3.11"
packages = ["src/mouse_tracking"]
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.