diff --git a/R/FamiliarData.R b/R/FamiliarData.R index 1e61c204..24df9ed6 100644 --- a/R/FamiliarData.R +++ b/R/FamiliarData.R @@ -13,22 +13,11 @@ setMethod( object <- update_object(object = object) # Create an initial descriptor. - data_str <- paste0( + cat(paste0( "A dataset (", object@name, "; ", - .familiar_version_string(object), ")" - ) - - # Add the generating ensemble, if available. - if (length(object@generating_ensemble) > 0L) { - data_str <- paste0( - data_str, " created using ", - object@generating_ensemble, ".\n" - ) - - } else { - data_str <- paste0(data_str, ".\n") - } - cat(data_str) + .familiar_version_string(object), + ").\n" + )) # Details concerning the generating ensemble. cat(paste0( diff --git a/R/FamiliarS4Classes.R b/R/FamiliarS4Classes.R index 4fb59a41..93eb05d1 100644 --- a/R/FamiliarS4Classes.R +++ b/R/FamiliarS4Classes.R @@ -339,8 +339,6 @@ setClassUnion( #' dataset. #' @slot is_validation Signifies whether the underlying data forms a validation #' dataset. Used internally. -#' @slot generating_ensemble Name of the ensemble that was used to generate the -#' familiarData object. #' @slot project_id Identifier of the project that generated the familiarData #' object. #' @slot familiar_version Version of the familiar package. @@ -410,8 +408,6 @@ setClass("familiarData", # Flag to signal whether the data concerns validation data (TRUE) or # development data (FALSE) is_validation = "logical", - # Name of the model ensemble used to generate this data - generating_ensemble = "character", # Project identifier project_id = "ANY", # Package version for backward compatibility @@ -446,7 +442,6 @@ setClass("familiarData", sample_similarity = NULL, ice_data = NULL, is_validation = FALSE, - generating_ensemble = character(0L), project_id = NULL, familiar_version = NULL ) diff --git a/man/familiarData-class.Rd b/man/familiarData-class.Rd index e0605143..8b563da5 100644 --- a/man/familiarData-class.Rd +++ b/man/familiarData-class.Rd @@ -90,9 +90,6 @@ dataset.} \item{\code{is_validation}}{Signifies whether the underlying data forms a validation dataset. Used internally.} -\item{\code{generating_ensemble}}{Name of the ensemble that was used to generate the -familiarData object.} - \item{\code{project_id}}{Identifier of the project that generated the familiarData object.}