search_skeletalvis {SkeletalVis}R Documentation

Search for experiments in SkeletalVis

Description

Search for experiments matching a search term in the SkeletalVis database. The search can be done across the entire database or specific metadata columns.

Usage

search_skeletalvis(skeletalvis, search_term, columns = NULL)

Arguments

skeletalvis

Folder with the SkeletalVis data

search_term

A string representing the term to search for.

columns

A character vector of column names to limit the search. If NULL (default), the entire table is searched.

Value

A data frame containing experiments that match the search term in the specified columns or the whole table.

Examples


skeletalvis <- load_skeletalvis(demo=TRUE)
# Search across all columns for rows containing "SOX9"
result <- search_skeletalvis(skeletalvis, "SOX9")

# Search only in the 'Perturbation' and 'Description' columns
result <- search_skeletalvis(skeletalvis, "SOX9", columns = c("Perturbation", "Description"))

[Package SkeletalVis version 0.1.1 Index]