Skip to content

Commit

Permalink
fix make consistent error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
robitalec committed Nov 20, 2024
1 parent 2f67e07 commit 39fc136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/edge_delay.R
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ edge_delay <- function(
}

if (!'fusionID' %in% colnames(edges)) {
stop('fusionID not present in edges, did you run fusion_id?')
stop('fusionID field not present in edges, did you run fusion_id?')
}

if (!'dyadID' %in% colnames(edges)) {
stop('dyadID not present in edges, did you run dyad_id?')
stop('dyadID field not present in edges, did you run dyad_id?')
}


Expand Down

0 comments on commit 39fc136

Please sign in to comment.