LogoLogo
  • Overview
  • publisher
    • Introduction
    • Getting Started
      • Logging in to Publisher
    • Data Sources
      • Connecting a Data Source
      • Managing a Data Source
      • Connectors
        • AWS S3 Permissions
        • Connecting to AWS S3 Storage
        • Google Cloud Storage (GCS) Permissions
        • Connecting to Google Cloud Storage
        • PostgreSQL Permissions
        • Connecting to PostgreSQL
        • PostgreSQL on Azure Permissions
        • Microsoft Azure Blob Storage Permissions
        • Connecting to Microsoft Azure Blob Storage
        • Connecting to HTTPS
        • Connecting to other sources via Trino
          • BigQuery
    • Collections
      • Creating a Collection
      • Sharing a Collection
      • Collection Filters
      • Editing Collection Metadata
      • Updating Collection Contents
    • Access Policies
      • Creating an Access Policy
      • Managing Access Policies
    • Questions
      • Adding Questions
      • Example Question
    • Settings
      • Viewing Current and Past Administrators
      • Adding an Administrator
      • Removing an Administrator
      • Setting Notification Preferences
  • Explorer
    • Introduction
    • Viewing a Collection
    • Browsing Collections
    • Asking Questions
    • Accessing a Private Collection
      • Requesting Access to a Private Collection
    • Filtering Data in Tables
      • Strings
      • Dates
      • Numbers
  • Workbench
    • Introduction
    • Getting Started
      • Logging into Workbench
      • Connecting an Engine
      • Finding or Importing a Workflow
      • Configuring Workflow Inputs
      • Running and Monitoring a Workflow
      • Locating Outputs
    • Engines
      • Adding and Updating an Engine
        • On AWS HealthOmics
        • On Microsoft Azure
        • On Google Cloud Platform
        • On Premises
      • Parameters
        • AWS HealthOmics
        • Google Cloud Platform
        • Microsoft Azure
        • On-Premises
        • Cromwell
        • Amazon Genomics CLI
    • Workflows
      • Finding Workflows
      • Adding a Workflow
      • Supported Languages
      • Repositories
        • Dockstore
    • Instruments
      • Getting Started with Instruments
      • Connecting a Storage Account
      • Using Sample Data in a Workflow
      • Running Workflows Using Samples
      • Family Based Analysis with Pedigree Information
      • Monitor the Workflow
      • CLI Reference
        • Instruments
        • Storage
        • Samples
        • OpenAPI Specification
    • Entities
    • Terminology
  • Passport
    • Introduction
    • Registering an Email Address for a Google Identity
  • Command Line Interface
    • Installation
    • Usage Examples
    • Working with JSON Data
    • Reference
      • workbench
        • runs submit
        • runs list
        • runs describe
        • runs cancel
        • runs delete
        • runs logs
        • runs tasks list
        • runs events list
        • engines list
        • engines describe
        • engines parameters list
        • engines parameters describe
        • engines health-checks list
        • workflows create
        • workflows list
        • workflows describe
        • workflows update
        • workflows delete
        • workflows versions create
        • workflows versions list
        • workflows versions describe
        • workflows versions files
        • workflows versions update
        • workflows versions delete
        • workflows versions defaults create
        • workflows versions defaults list
        • workflows versions defaults describe
        • workflows versions defaults update
        • workflows versions defaults delete
        • namespaces get-default
        • storage add
        • storage delete
        • storage describe
        • storage list
        • storage update
        • storage platforms add
        • storage platforms delete
        • storage platforms describe
        • storage platforms list
        • samples list
        • samples describe
        • samples files list
      • publisher
        • datasources list
  • Analysis
    • Python Library
    • Popular Environments
      • Cromwell
      • CWL Tool
      • Terra
      • Nextflow
      • DNAnexus
Powered by GitBook

© DNAstack. All rights reserved.

On this page
  • Available String Operators
  • Basic Text Filtering
  • Advanced Pattern Matching
  • Excluding Values
  • Empty Value Filtering

Was this helpful?

  1. Explorer
  2. Filtering Data in Tables

Strings

How to use filter operators for facets containing values of string datatype.

Filter string columns in your data using a variety of operators to find exactly what you need. Each string filter provides different ways to match and filter text data.

Available String Operators

Explorer provides several operators for filtering string data:

  • has - Shows values containing a specific substring

  • regex - Filters using regular expression patterns

  • not - Excludes values containing a specific substring

  • empty - Shows only empty values

  • not empty - Shows only non-empty values

Basic Text Filtering

To filter using basic text matching:

  1. Click the search input in your chosen filter

  2. Select the "has" operator

  3. Type your search term or select from the autocomplete options

  4. Click "Apply" to activate the filter

Advanced Pattern Matching

The regex operator allows powerful pattern matching using regular expressions. Here are some common patterns:

Basic Patterns:

  • ID-.*open - Matches "ID-" followed by any text containing "open"

  • ID-[0-9]+ - Matches "ID-" followed by one or more numbers

  • open|closed - Matches either "open" or "closed"

Anchored Patterns:

  • ^sample - Matches text starting with "sample"

  • .fa$ - Matches text ending with ".fa"

Regular expressions match any part of the text by default. Use ^ and $ to match the start and end of the text.

Excluding Values

Use the "not" operator to exclude specific values:

  1. Select the "not" operator

  2. Enter the text you want to exclude

  3. Click "Apply"

Empty Value Filtering

Quickly find or exclude empty values using the "empty" and "not empty" operators. These filters apply immediately when selected.

PreviousFiltering Data in TablesNextDates

Last updated 4 months ago

Was this helpful?