Codota Logo
XrefTag.getSecondary
Code IndexAdd Codota to your IDE (free)

How to use
getSecondary
method
in
uk.ac.ebi.intact.application.dataConversion.psiUpload.model.XrefTag

Best Java code snippets using uk.ac.ebi.intact.application.dataConversion.psiUpload.model.XrefTag.getSecondary (Showing top 12 results out of 315)

  • Common ways to obtain XrefTag
private void myMethod () {
XrefTag x =
  • Codota IconIterator iterator;(XrefTag) iterator.next()
  • Codota IconConversion.psiUpload.parser.XrefParser XrefParser;Element root;XrefParser.processPrimaryRef(root)
  • Codota IconConversion.psiUpload.model.CellTypeTag cellTypeTag;cellTypeTag.getPsiDefinition()
  • Smart code suggestions by Codota
}
origin: uk.ac.ebi.intact.app/data-conversion

primaryXref.getId(),
primaryXref.getSecondary(),
primaryXref.getVersion() );
primaryXref.getId(),
primaryXref.getSecondary(),
primaryXref.getVersion() );
origin: uk.ac.ebi.intact.util/data-conversion

primaryXref.getId(),
primaryXref.getSecondary(),
primaryXref.getVersion() );
primaryXref.getId(),
primaryXref.getSecondary(),
primaryXref.getVersion() );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

primaryXref.getId(),
primaryXref.getSecondary(),
primaryXref.getVersion() );
primaryXref.getId(),
primaryXref.getSecondary(),
primaryXref.getVersion() );
origin: uk.ac.ebi.intact.util/data-conversion

private static void createXref( Protein protein,
                XrefTag xrefTag,
                boolean identity ) throws IntactException {
  CvXrefQualifier qualifier = null;
  if ( identity ) {
    qualifier = ControlledVocabularyRepository.getIdentityQualifier();
  }
  CvDatabase database = XrefChecker.getCvDatabase( xrefTag.getDb() );
  if ( database == null ) {
    // failed to find the database, skip the Xref creation
  } else {
    InteractorXref xref = new InteractorXref( IntactContext.getCurrentInstance().getInstitution(),
               database,
               xrefTag.getId(),
               xrefTag.getSecondary(),
               xrefTag.getVersion(),
               qualifier );
    protein.addXref( xref );
    IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getXrefDao().persist( xref );
  }
}
origin: uk.ac.ebi.intact.app/data-conversion

private static void createXref( Protein protein,
                XrefTag xrefTag,
                boolean identity ) throws IntactException {
  CvXrefQualifier qualifier = null;
  if ( identity ) {
    qualifier = ControlledVocabularyRepository.getIdentityQualifier();
  }
  CvDatabase database = XrefChecker.getCvDatabase( xrefTag.getDb() );
  if ( database == null ) {
    // failed to find the database, skip the Xref creation
  } else {
    InteractorXref xref = new InteractorXref( IntactContext.getCurrentInstance().getInstitution(),
               database,
               xrefTag.getId(),
               xrefTag.getSecondary(),
               xrefTag.getVersion(),
               qualifier );
    protein.addXref( xref );
    IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getXrefDao().persist( xref );
  }
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

private static void createXref( Protein protein,
                XrefTag xrefTag,
                boolean identity ) throws IntactException {
  CvXrefQualifier qualifier = null;
  if ( identity ) {
    qualifier = ControlledVocabularyRepository.getIdentityQualifier();
  }
  CvDatabase database = XrefChecker.getCvDatabase( xrefTag.getDb() );
  if ( database == null ) {
    // failed to find the database, skip the Xref creation
  } else {
    InteractorXref xref = new InteractorXref( IntactContext.getCurrentInstance().getInstitution(),
               database,
               xrefTag.getId(),
               xrefTag.getSecondary(),
               xrefTag.getVersion(),
               qualifier );
    protein.addXref( xref );
    IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getXrefDao().persist( xref );
  }
}
origin: uk.ac.ebi.intact.app/data-conversion

     XrefChecker.getCvDatabase( bibRef.getDb() ),
     bibRef.getId(),
     bibRef.getSecondary(),
     bibRef.getVersion(),
     ControlledVocabularyRepository.getPrimaryXrefQualifier() );
    XrefChecker.getCvDatabase( xrefTag.getDb() ),
    xrefTag.getId(),
    xrefTag.getSecondary(),
    xrefTag.getVersion(),
    ControlledVocabularyRepository.getSeeAlsoXrefQualifier() );
XrefChecker.getCvDatabase( xrefTag.getDb() ),
xrefTag.getId(),
xrefTag.getSecondary(),
xrefTag.getVersion(),
null );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

     XrefChecker.getCvDatabase( bibRef.getDb() ),
     bibRef.getId(),
     bibRef.getSecondary(),
     bibRef.getVersion(),
     ControlledVocabularyRepository.getPrimaryXrefQualifier() );
    XrefChecker.getCvDatabase( xrefTag.getDb() ),
    xrefTag.getId(),
    xrefTag.getSecondary(),
    xrefTag.getVersion(),
    ControlledVocabularyRepository.getSeeAlsoXrefQualifier() );
XrefChecker.getCvDatabase( xrefTag.getDb() ),
xrefTag.getId(),
xrefTag.getSecondary(),
xrefTag.getVersion(),
null );
origin: uk.ac.ebi.intact.util/data-conversion

     XrefChecker.getCvDatabase( bibRef.getDb() ),
     bibRef.getId(),
     bibRef.getSecondary(),
     bibRef.getVersion(),
     ControlledVocabularyRepository.getPrimaryXrefQualifier() );
    XrefChecker.getCvDatabase( xrefTag.getDb() ),
    xrefTag.getId(),
    xrefTag.getSecondary(),
    xrefTag.getVersion(),
    ControlledVocabularyRepository.getSeeAlsoXrefQualifier() );
XrefChecker.getCvDatabase( xrefTag.getDb() ),
xrefTag.getId(),
xrefTag.getSecondary(),
xrefTag.getVersion(),
null );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

XrefChecker.getCvDatabase( xrefTag.getDb() ),
xrefTag.getId(),
xrefTag.getSecondary(),
xrefTag.getVersion(),
qualifier );
origin: uk.ac.ebi.intact.util/data-conversion

XrefChecker.getCvDatabase( xrefTag.getDb() ),
xrefTag.getId(),
xrefTag.getSecondary(),
xrefTag.getVersion(),
qualifier );
origin: uk.ac.ebi.intact.app/data-conversion

XrefChecker.getCvDatabase( xrefTag.getDb() ),
xrefTag.getId(),
xrefTag.getSecondary(),
xrefTag.getVersion(),
qualifier );
uk.ac.ebi.intact.application.dataConversion.psiUpload.modelXrefTaggetSecondary

Popular methods of XrefTag

  • <init>
  • equals
  • getDb
  • getId
  • getType
  • getVersion
  • hashCode
  • isPrimaryRef

Popular in Java

  • Running tasks concurrently on multiple threads
  • startActivity (Activity)
  • addToBackStack (FragmentTransaction)
  • onRequestPermissionsResult (Fragment)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • TreeSet (java.util)
    A NavigableSet implementation based on a TreeMap. The elements are ordered using their Comparable, o
  • JFrame (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now