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
If the input file is a bed format, then column names should be removed. But if the user forgets to remove the column names, then the following error is generated:
Error in peak.df[, 2] + 1 : non-numeric argument to binary operator
It would be easier to understand if some error message is put in isBedFile() to remind user not include column name when the input file is bed format.
e.g.
if (!is.numeric(df[1,2])) {
message("It seems you include the column name in the bed file. Could you remove it?")
}
The text was updated successfully, but these errors were encountered:
If the input file is a bed format, then column names should be removed. But if the user forgets to remove the column names, then the following error is generated:
Error in peak.df[, 2] + 1 : non-numeric argument to binary operator
It would be easier to understand if some error message is put in isBedFile() to remind user not include column name when the input file is bed format.
e.g.
The text was updated successfully, but these errors were encountered: