Package 

Interface Dust

  • All Implemented Interfaces:
    org.veupathdb.lib.blast.serial.BlastField

    
    public interface Dust
     implements BlastField
                        

    -dust <String>

    Filter query sequence with DUST (Format: 'yes', 'level window linker', or 'no' to disable)

    Default = "20 64 1"

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      public class Dust.Companion
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Boolean getIsYes() Indicates whether this Dust value is "yes".
      abstract Boolean getIsNo() Indicates whether this Dust value is "no".
      abstract Integer getLevel() The level value for a value based Dust value.
      abstract Integer getWindow() The window value for a value based Dust value.
      abstract Integer getLinker() The linker value for a value based Dust value.
      abstract Boolean getIsDefault() Indicates whether the field is currently set to its default value.
      abstract String getName() The name of this field.
      • Methods inherited from class org.veupathdb.lib.blast.blastn.fields.Dust

        appendCliParts, appendCliSegment, appendJson, toJson
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getIsYes

         abstract Boolean getIsYes()

        Indicates whether this Dust value is "yes".

      • getIsNo

         abstract Boolean getIsNo()

        Indicates whether this Dust value is "no".

      • getLevel

         abstract Integer getLevel()

        The level value for a value based Dust value.

        DUST level (score threshold for subwindows)

        Default = 20

      • getWindow

         abstract Integer getWindow()

        The window value for a value based Dust value.

        DUST window length

        Default = 64

      • getLinker

         abstract Integer getLinker()

        The linker value for a value based Dust value.

        DUST linker (how close masked intervals should be to get merged together).

        Default = 1

      • getIsDefault

         abstract Boolean getIsDefault()

        Indicates whether the field is currently set to its default value.