MVN

de.cit-ec.tcs.alignment : sequences

Maven & Gradle

Oct 26, 2018

TCS Alignment Toolbox Sequences · This module contains the sequence datastructure of the TCS Alignment Toolbox. It defines the possible value sets in the ValueType enum as well as the different KeywordSpecification classes, namely: 1.) StringKeywordSpecification for string type values. 2.) SymbolicKeywordSpecification for values from a discrete alphabet (also refer to the Alphabet class) 3.) VectorialKeywordSpecification for vectors of some length (or for scalars) A NodeSpecification is a vector of such KeywordSpecifications and defines the order of value sets. A node, then, is defined as a vector of values from these value sets (also refer to the Value interface as well as the StringValue, SymbolicValue and VectorialValue classes). Finally a sequence is defined as a list of such nodes.

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>sequences</artifactId>
    <version>3.1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.cit-ec.tcs.alignment : sequences to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.1.1

All Versions

Choose a version of de.cit-ec.tcs.alignment : sequences to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.1.x
sequences-3.1.1
sequences-3.1.0
3.0.x
sequences-3.0.1
sequences-3.0.0
2.1.x
sequences-2.1.2
2.0.x
sequences-2.0.0

How to add a dependency to Maven

Add the following de.cit-ec.tcs.alignment : sequences maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>sequences</artifactId>
    <version>3.1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.cit-ec.tcs.alignment : sequences gradle dependency to your build.gradle file:

implementation 'de.cit-ec.tcs.alignment:sequences:3.1.1'

Gradle Kotlin DSL: Add the following de.cit-ec.tcs.alignment : sequences gradle kotlin dependency to your build.gradle.kts file:

implementation("de.cit-ec.tcs.alignment:sequences:3.1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.cit-ec.tcs.alignment : sequences sbt scala dependency to your build.sbt file:

libraryDependencies += "de.cit-ec.tcs.alignment" % "sequences" % "3.1.1"

Advertisement