Skip to content

Commit

Permalink
Relocate sequenceID in obs
Browse files Browse the repository at this point in the history
  • Loading branch information
damianooldoni committed Jul 17, 2023
1 parent e018efc commit 792868d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,10 @@ convert_observations_to_0.1.6 <- function(package, from = "1.0-rc.1") {
observations <- observations %>%
dplyr::mutate(sequenceID = NA)
}

observations <- dplyr::relocate(observations,
"sequenceID",
.after = "deploymentID"
)
observations <- observations %>%
dplyr::rename(timestamp = "eventStart")

Expand Down

0 comments on commit 792868d

Please sign in to comment.