Search Results for

    Show / Hide Table of Contents

    Interface IIntervalsFilter

    Filters intervals produced by any rules by their relation to the intervals produced by another rule

    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IIntervalsFilter

    Properties

    | Edit this page View Source

    After

    Produces intervals that appear after an interval from the filter role

    Declaration
    [DataMember(Name = "after")]
    IntervalsContainer After { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    Before

    Produces intervals that appear before an interval from the filter role

    Declaration
    [DataMember(Name = "before")]
    IntervalsContainer Before { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    ContainedBy

    Produces intervals that are contained by an interval from the filter rule

    Declaration
    [DataMember(Name = "contained_by")]
    IntervalsContainer ContainedBy { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    Containing

    Produces intervals that contain an interval from the filter rule

    Declaration
    [DataMember(Name = "containing")]
    IntervalsContainer Containing { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    NotContainedBy

    Produces intervals that are not contained by an interval from the filter rule

    Declaration
    [DataMember(Name = "not_contained_by")]
    IntervalsContainer NotContainedBy { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    NotContaining

    Produces intervals that do not contain an interval from the filter rule

    Declaration
    [DataMember(Name = "not_containing")]
    IntervalsContainer NotContaining { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    NotOverlapping

    Produces intervals that do not overlap with an interval from the filter rule

    Declaration
    [DataMember(Name = "not_overlapping")]
    IntervalsContainer NotOverlapping { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    Overlapping

    Produces intervals that overlap with an interval from the filter rule

    Declaration
    [DataMember(Name = "overlapping")]
    IntervalsContainer Overlapping { get; set; }
    Property Value
    Type Description
    IntervalsContainer
    | Edit this page View Source

    Script

    filter intervals based on their start position, end position and internal gap count, using a script. The script has access to an

    interval
    variable, with
    start
    ,
    end
    and
    gaps
    properties
    Declaration
    [DataMember(Name = "script")]
    IScript Script { get; set; }
    Property Value
    Type Description
    IScript

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • After
      • Before
      • ContainedBy
      • Containing
      • NotContainedBy
      • NotContaining
      • NotOverlapping
      • Overlapping
      • Script
    • Extension Methods
    Back to top Generated by DocFX