Skip to content

Commit 91feff3

Browse files
committed
Replace <- with = assignment operator in cleanRawMZMine function
1 parent e4d8966 commit 91feff3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

R/clean_MZMine.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
PrecursorCharge = FragmentIon = ProductCharge = NULL
2222
id = score = compound_name = i.compound_name = NULL
2323

24-
mz_input <- getInputFile(msstats_object, "input")
25-
mz_input <- data.table::as.data.table(mz_input)
24+
mz_input = getInputFile(msstats_object, "input")
25+
mz_input = data.table::as.data.table(mz_input)
2626

2727
peak_area_suffix <- "Peakarea"
2828
peak_area_cols <- grep(paste0(peak_area_suffix, "$"),

0 commit comments

Comments
 (0)