Views

A view is a view of all entities (File, Folder, Project, Table, Docker Repository, View) within one or more Projects or Folders. Views can:

  • Provide a way of isolating or linking data based on similarities
  • Provide the ability to link entities together by their annotations
  • Allow view/editing entities attributes in bulk
  • Allow entities to be easily searched and queried

Preliminaries:

library(reticulate)
library(synapser)
## 
## TERMS OF USE NOTICE:
##   When using Synapse, remember that the terms and conditions of use require that you:
##   1) Attribute data contributors when discussing these data or results from these data.
##   2) Not discriminate, identify, or recontact individuals or groups represented by the data.
##   3) Use and contribute only data de-identified to HIPAA standards.
##   4) Redistribute data only under these same terms of use.
syn <- reticulate::import("synapseclient")
EntityViewType <- syn$EntityViewType
synLogin()
## NULL
# Create a new project
# use hex_digits to generate random string
hex_digits <- c(as.character(0:9), letters[1:6])
projectName <- sprintf("My unique project %s", paste0(sample(hex_digits, 32, replace = TRUE), collapse = ""))
project <- Project(projectName)
project <- synStore(project)

# Create some files
filePath <- tempfile()
connection <- file(filePath)
writeChar("this is the content of the first file", connection, eos = NULL)
close(connection)
file <- File(path = filePath, parent = project)
# Add some annotations
file$annotations = list(contributor = "UW", rank = "X")
file <- synStore(file)

filePath2 <- tempfile()
connection2 <- file(filePath2)
writeChar("this is the content of the second file", connection, eos = NULL)
close(connection2)
file2 <- File(path = filePath2, parent = project)
file2$annotations = list(contributor = "UW", rank = "X")
file2 <- synStore(file2)

Creating a View:

view <- EntityViewSchema(name = "my first file view",
                         columns = c(
                           Column(name = "contributor", columnType = "STRING"),
                           Column(name = "class", columnType = "STRING"),
                           Column(name = "rank", columnType = "STRING")),
                         parent = project$properties$id,
                         scopes = project$properties$id,
                         includeEntityTypes = c(EntityViewType$FILE, EntityViewType$FOLDER),
                         add_default_columns = TRUE)

view <- synStore(view)

We support the following entity type in a View:

EntityViewType
## <enum 'EntityViewType'>

To see the content of your newly created View, use synTableQuery():

queryResults <- synTableQuery(sprintf("select * from %s", view$properties$id))
data <- as.data.frame(queryResults)
data
##     ROW_ID ROW_VERSION                             ROW_ETAG          id
## 1 68763420           1 ab338fb5-c4f6-4330-a76f-c2d4a631f3bf syn68763420
## 2 68763421           1 eea4ec8a-675c-4ec0-9674-3111aa155145 syn68763421
##                name description           createdOn createdBy
## 1 file690ed60d24dac        <NA> 2025-07-25 18:14:22   3481671
## 2 file690ed78bbab16        <NA> 2025-07-25 18:14:23   3481671
##                                   etag          modifiedOn modifiedBy
## 1 ab338fb5-c4f6-4330-a76f-c2d4a631f3bf 2025-07-25 18:14:22    3481671
## 2 eea4ec8a-675c-4ec0-9674-3111aa155145 2025-07-25 18:14:23    3481671
##                                                                   path type
## 1 My unique project c6be45eee35844e7ec1d6ada44bc15ee/file690ed60d24dac file
## 2 My unique project c6be45eee35844e7ec1d6ada44bc15ee/file690ed78bbab16 file
##   currentVersion    parentId benefactorId   projectId dataFileHandleId
## 1              1 syn68763419  syn68763419 syn68763419        160705542
## 2              1 syn68763419  syn68763419 syn68763419        160705543
##        dataFileName dataFileSizeBytes                   dataFileMD5Hex
## 1 file690ed60d24dac                37 47dfe7f5eaa49a5413c7b79b67ab9c43
## 2 file690ed78bbab16                38 ba01e01b9e3ffea3ebef95efa62998b0
##                               dataFileConcreteType        dataFileBucket
## 1 org.sagebionetworks.repo.model.file.S3FileHandle proddata.sagebase.org
## 2 org.sagebionetworks.repo.model.file.S3FileHandle proddata.sagebase.org
##                                                      dataFileKey contributor
## 1 3481671/33b3aa77-6f28-44d7-bc35-5487cf2fb5f7/file690ed60d24dac          UW
## 2 3481671/51122018-dc93-43d6-bc45-97f11d7e1311/file690ed78bbab16          UW
##   class rank
## 1  <NA>    X
## 2  <NA>    X

Updating Annotations using View

To update ‘class’ annotation for ‘file2’, simply update the view:

data["class"] <- c("V", "VI")
synStore(Table(view$properties$id, data))

The change in annotations is reflected in synGetAnnotations():

synGetAnnotations(file2$properties$id)

A unique etag is associated with every file that updates when changes are made to a file, including the contents, annotations, or metadata. Any updates pushed to Synapse will change an object’s etag.

data$etag

There may be cases where you want to update the annotations on a subset of files in a view. In order to preserve the etag, and thus the file history, you will need to store only the rows that have been modified.

data$contributor[1] <- c("Sage Bionetworks")
synStore(Table(view$properties$id, data[1,]))
## <synapseclient.table.CsvFileTable object at 0x7f01e5f0a350>

Update View’s Content

A view can contain different types of entity. To change the types of entity that will show up in a view:

view <- synGet(view$properties$id)
view$set_entity_types(list(EntityViewType$FILE))

A View is a Table. Please visit Tables vignettes to see how to change schema, update content, and other operations that can be done on View.

synDelete(project)
## NULL