congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ExpressedInTag
Code IndexAdd Tabnine to your IDE (free)

How to use
ExpressedInTag
in
uk.ac.ebi.intact.application.dataConversion.psiUpload.model

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

origin: uk.ac.ebi.intact.app/data-conversion

public boolean equals( Object o ) {
  if ( this == o ) {
    return true;
  }
  if ( !( o instanceof ProteinParticipantTag ) ) {
    return false;
  }
  final ProteinParticipantTag proteinParticipantTag = (ProteinParticipantTag) o;
  if ( expressedIn != null ? !expressedIn.equals( proteinParticipantTag.expressedIn ) : proteinParticipantTag.expressedIn != null ) {
    return false;
  }
  if ( features != null ? !features.equals( proteinParticipantTag.features ) : proteinParticipantTag.features != null ) {
    return false;
  }
  if ( isOverExpressedProtein != null ? !isOverExpressedProtein.equals( proteinParticipantTag.isOverExpressedProtein ) : proteinParticipantTag.isOverExpressedProtein != null ) {
    return false;
  }
  if ( isTaggedProtein != null ? !isTaggedProtein.equals( proteinParticipantTag.isTaggedProtein ) : proteinParticipantTag.isTaggedProtein != null ) {
    return false;
  }
  if ( !proteinInteractor.equals( proteinParticipantTag.proteinInteractor ) ) {
    return false;
  }
  if ( !role.equals( proteinParticipantTag.role ) ) {
    return false;
  }
  return true;
}
origin: uk.ac.ebi.intact.util/data-conversion

public int hashCode() {
  int result;
  result = proteinInteractor.hashCode();
  result = 29 * result + role.hashCode();
  result = 29 * result + ( expressedIn != null ? expressedIn.hashCode() : 0 );
  result = 29 * result + ( features != null ? features.hashCode() : 0 );
  result = 29 * result + ( isTaggedProtein != null ? isTaggedProtein.hashCode() : 0 );
  result = 29 * result + ( isOverExpressedProtein != null ? isOverExpressedProtein.hashCode() : 0 );
  return result;
}
origin: uk.ac.ebi.intact.app/data-conversion

      expressedInAnnotations.add( new ExpressedInTag( annotation ) );
    } catch ( IllegalArgumentException e ) {
      MessageHolder.getInstance().addParserMessage( new Message( root, e.getMessage() ) );
for ( Iterator iterator = expressedInAnnotations.iterator(); iterator.hasNext() && null == expressedIn; ) {
  ExpressedInTag tmp = (ExpressedInTag) iterator.next();
  if ( tmp.getProteinInteractorID().equals( id ) ) {
    expressedIn = tmp;
origin: uk.ac.ebi.intact.app/data-conversion

  throw new IllegalArgumentException( "Could not check ExpressedInTag if the given parameter is null" );
String shortlabel = expressedIn.getBioSourceShortlabel();
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

      expressedInAnnotations.add( new ExpressedInTag( annotation ) );
    } catch ( IllegalArgumentException e ) {
      MessageHolder.getInstance().addParserMessage( new Message( root, e.getMessage() ) );
for ( Iterator iterator = expressedInAnnotations.iterator(); iterator.hasNext() && null == expressedIn; ) {
  ExpressedInTag tmp = (ExpressedInTag) iterator.next();
  if ( tmp.getProteinInteractorID().equals( id ) ) {
    expressedIn = tmp;
origin: uk.ac.ebi.intact.util/data-conversion

  throw new IllegalArgumentException( "Could not check ExpressedInTag if the given parameter is null" );
String shortlabel = expressedIn.getBioSourceShortlabel();
origin: uk.ac.ebi.intact.util/data-conversion

      expressedInAnnotations.add( new ExpressedInTag( annotation ) );
    } catch ( IllegalArgumentException e ) {
      MessageHolder.getInstance().addParserMessage( new Message( root, e.getMessage() ) );
for ( Iterator iterator = expressedInAnnotations.iterator(); iterator.hasNext() && null == expressedIn; ) {
  ExpressedInTag tmp = (ExpressedInTag) iterator.next();
  if ( tmp.getProteinInteractorID().equals( id ) ) {
    expressedIn = tmp;
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

  throw new IllegalArgumentException( "Could not check ExpressedInTag if the given parameter is null" );
String shortlabel = expressedIn.getBioSourceShortlabel();
origin: uk.ac.ebi.intact.app/data-conversion

public int hashCode() {
  int result;
  result = proteinInteractor.hashCode();
  result = 29 * result + role.hashCode();
  result = 29 * result + ( expressedIn != null ? expressedIn.hashCode() : 0 );
  result = 29 * result + ( features != null ? features.hashCode() : 0 );
  result = 29 * result + ( isTaggedProtein != null ? isTaggedProtein.hashCode() : 0 );
  result = 29 * result + ( isOverExpressedProtein != null ? isOverExpressedProtein.hashCode() : 0 );
  return result;
}
origin: uk.ac.ebi.intact.util/data-conversion

public boolean equals( Object o ) {
  if ( this == o ) {
    return true;
  }
  if ( !( o instanceof ProteinParticipantTag ) ) {
    return false;
  }
  final ProteinParticipantTag proteinParticipantTag = (ProteinParticipantTag) o;
  if ( expressedIn != null ? !expressedIn.equals( proteinParticipantTag.expressedIn ) : proteinParticipantTag.expressedIn != null ) {
    return false;
  }
  if ( features != null ? !features.equals( proteinParticipantTag.features ) : proteinParticipantTag.features != null ) {
    return false;
  }
  if ( isOverExpressedProtein != null ? !isOverExpressedProtein.equals( proteinParticipantTag.isOverExpressedProtein ) : proteinParticipantTag.isOverExpressedProtein != null ) {
    return false;
  }
  if ( isTaggedProtein != null ? !isTaggedProtein.equals( proteinParticipantTag.isTaggedProtein ) : proteinParticipantTag.isTaggedProtein != null ) {
    return false;
  }
  if ( !proteinInteractor.equals( proteinParticipantTag.proteinInteractor ) ) {
    return false;
  }
  if ( !role.equals( proteinParticipantTag.role ) ) {
    return false;
  }
  return true;
}
origin: uk.ac.ebi.intact.util/data-conversion

BioSource bs = ExpressedInChecker.getBioSource( expressedIn.getBioSourceShortlabel() );
component.setExpressedIn( bs );
IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getComponentDao().update( component );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

public int hashCode() {
  int result;
  result = proteinInteractor.hashCode();
  result = 29 * result + role.hashCode();
  result = 29 * result + ( expressedIn != null ? expressedIn.hashCode() : 0 );
  result = 29 * result + ( features != null ? features.hashCode() : 0 );
  result = 29 * result + ( isTaggedProtein != null ? isTaggedProtein.hashCode() : 0 );
  result = 29 * result + ( isOverExpressedProtein != null ? isOverExpressedProtein.hashCode() : 0 );
  return result;
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

public boolean equals( Object o ) {
  if ( this == o ) {
    return true;
  }
  if ( !( o instanceof ProteinParticipantTag ) ) {
    return false;
  }
  final ProteinParticipantTag proteinParticipantTag = (ProteinParticipantTag) o;
  if ( expressedIn != null ? !expressedIn.equals( proteinParticipantTag.expressedIn ) : proteinParticipantTag.expressedIn != null ) {
    return false;
  }
  if ( features != null ? !features.equals( proteinParticipantTag.features ) : proteinParticipantTag.features != null ) {
    return false;
  }
  if ( isOverExpressedProtein != null ? !isOverExpressedProtein.equals( proteinParticipantTag.isOverExpressedProtein ) : proteinParticipantTag.isOverExpressedProtein != null ) {
    return false;
  }
  if ( isTaggedProtein != null ? !isTaggedProtein.equals( proteinParticipantTag.isTaggedProtein ) : proteinParticipantTag.isTaggedProtein != null ) {
    return false;
  }
  if ( !proteinInteractor.equals( proteinParticipantTag.proteinInteractor ) ) {
    return false;
  }
  if ( !role.equals( proteinParticipantTag.role ) ) {
    return false;
  }
  return true;
}
origin: uk.ac.ebi.intact.app/data-conversion

BioSource bs = ExpressedInChecker.getBioSource( expressedIn.getBioSourceShortlabel() );
component.setExpressedIn( bs );
IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getComponentDao().update( component );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

BioSource bs = ExpressedInChecker.getBioSource( expressedIn.getBioSourceShortlabel() );
component.setExpressedIn( bs );
IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getComponentDao().update( component );
uk.ac.ebi.intact.application.dataConversion.psiUpload.modelExpressedInTag

Javadoc

That class .

Most used methods

  • <init>
  • equals
  • getBioSourceShortlabel
  • getProteinInteractorID
  • hashCode

Popular in Java

  • Making http requests using okhttp
  • getSystemService (Context)
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JList (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best plugins for Eclipse
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