Search
TileDB’s catalog allows you to search over all your assets, as well as public assets available in the TileDB Marketplace. TileDB currently indexes on the following asset information:
- Name
- Description
- Metadata (where applicable)
- Tags
Search private assets
To search your assets, select the Assets
item on the left navigation menu, choose the asset class you would like to search on (e.g., Data
or more scoped, such as VCF
), and then add keywords in the search field at the top-right portion of the screen. Note that in order to search for a tag, you need to add #
at the beginning of the tag (e.g., #tutorial
).
You can also search private assets programmatically as follows:
list(
tiledb.cloud.asset.="<account>", # Which namespace to focus on.
namespace="vcf", # The search keywords.
search=2, # How many pages to constrain the results in.
page )
Search public assets
Search works similarly in the Marketplace as well. Select Marketplace
from the left navigation menu, then choose an asset type, and add your keywords in the search field at the top of the screen.
You can also search public assets programmatically as follows:
tiledb.cloud.asset.list_public(="vcf", # The search keywords.
search=2, # How many pages to constrain the results in.
page )