Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienCode404 committed Nov 5, 2024
1 parent 04a9bdd commit 79018cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/camera/CAMERA_findAdducts.R
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ main_cols <- 1:(ncols - sample_cols - 3) # Main columns before sample columns
tail_cols <- (ncols - 2):ncols # The last 3 columns (adduct, isotope, pcgroup)

# Combine the selected columns from matgrp with the group names
variableMetadata <- cbind(
variableMetadata <- data.frame(
name = names_default,
name_custom = names_custom,
stringsAsFactors = FALSE
Expand Down
2 changes: 1 addition & 1 deletion tools/camera/CAMERA_findIsotopes.R
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ main_cols <- 1:(ncols - sample_cols - 3) # Main columns before sample columns
tail_cols <- (ncols - 2):ncols # The last 3 columns (adduct, isotope, pcgroup)

# Combine the selected columns from matgrp with the group names
variableMetadata <- cbind(
variableMetadata <- data.frame(
name = names_default,
name_custom = names_custom,
stringsAsFactors = FALSE
Expand Down
2 changes: 1 addition & 1 deletion tools/camera/CAMERA_groupCorr.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ main_cols <- 1:(ncols - sample_cols - 3) # Main columns before sample columns
tail_cols <- (ncols - 2):ncols # The last 3 columns (adduct, isotope, pcgroup)

# Combine the selected columns from matgrp with the group names
variableMetadata <- cbind(
variableMetadata <- data.frame(
name = names_default,
name_custom = names_custom,
stringsAsFactors = FALSE
Expand Down
2 changes: 1 addition & 1 deletion tools/camera/CAMERA_groupFWHM.R
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ main_cols <- 1:(ncols - sample_cols - 3) # Main columns before sample columns
tail_cols <- (ncols - 2):ncols # The last 3 columns (adduct, isotope, pcgroup)

# Combine the selected columns from matgrp with the group names
variableMetadata <- cbind(
variableMetadata <- data.frame(
name = names_default,
name_custom = names_custom,
stringsAsFactors = FALSE
Expand Down

0 comments on commit 79018cc

Please sign in to comment.