You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moreover, the reduce() function in the Line 183 of functions-addIdentificationData.R shall be moved into a line larger than 195. Because running reduce() after filterIdentificationDataFrame() will cause an error: "Error in !x[, decoy] : invalid argument type". This is because the reduce() function combined multiple logical values (FALSE;TRUE;) into one cell under the "isDecoy" column. Those cells with combined logical values (as characters type) will cause an error of invalid argument type.
The use of
missing()
function in Line 1226 of utils.R makesaddIdentificationData()
function not working whenid
is a data.frame in R 4.3.2.However, it works when passing
key=key
toreduce()
function as shown below:This is because the
missing()
function is used to determine whether an argument was supplied. Please check an example below:Therefore, Line 183 of functions-addIdentificationData.R will disable
.addDataFrameIdentificationData ()
function in any situation.The text was updated successfully, but these errors were encountered: