Tabnine Logo
FilterGraph_GAF2.addTaxons
Code IndexAdd Tabnine to your IDE (free)

How to use
addTaxons
method
in
slib.graph.io.loader.utils.filter.graph.gaf2.FilterGraph_GAF2

Best Java code snippets using slib.graph.io.loader.utils.filter.graph.gaf2.FilterGraph_GAF2.addTaxons (Showing top 2 results out of 315)

origin: com.github.sharispe/slib-graph-io

/**
 *
 * @param conf
 * @throws SLIB_Ex_Critic
 */
public FilterGraph_GAF2(Conf conf) throws SLIB_Ex_Critic {
  super(conf);
  String taxids = (String) conf.getParam(FilterGraph_GAF2_cst.TAXONS_IDS);
  String ecids = (String) conf.getParam(FilterGraph_GAF2_cst.REMOVE_EC);
  if (taxids != null) {
    addTaxons(Arrays.asList(taxids.split(",")));
  }
  if (ecids != null) {
    addECtoExclude(Arrays.asList(ecids.split(",")));
  }
}
origin: sharispe/slib

/**
 *
 * @param conf
 * @throws SLIB_Ex_Critic
 */
public FilterGraph_GAF2(Conf conf) throws SLIB_Ex_Critic {
  super(conf);
  String taxids = (String) conf.getParam(FilterGraph_GAF2_cst.TAXONS_IDS);
  String ecids = (String) conf.getParam(FilterGraph_GAF2_cst.REMOVE_EC);
  if (taxids != null) {
    addTaxons(Arrays.asList(taxids.split(",")));
  }
  if (ecids != null) {
    addECtoExclude(Arrays.asList(ecids.split(",")));
  }
}
slib.graph.io.loader.utils.filter.graph.gaf2FilterGraph_GAF2addTaxons

Popular methods of FilterGraph_GAF2

  • <init>
  • addECtoExclude
  • getExcludedEC
  • getId
  • getTaxons
  • getType

Popular in Java

  • Updating database using SQL prepared statement
  • setScale (BigDecimal)
  • setRequestProperty (URLConnection)
  • notifyDataSetChanged (ArrayAdapter)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Table (org.hibernate.mapping)
    A relational table
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now