Codota Logo
UserSessionDownload.<init>
Code IndexAdd Codota to your IDE (free)

How to use
uk.ac.ebi.intact.application.dataConversion.psiDownload.UserSessionDownload
constructor

Best Java code snippets using uk.ac.ebi.intact.application.dataConversion.psiDownload.UserSessionDownload.<init> (Showing top 18 results out of 315)

  • Common ways to obtain UserSessionDownload
private void myMethod () {
UserSessionDownload u =
  • Codota IconConversion.PsiVersion psiVersion;new UserSessionDownload(psiVersion)
  • Smart code suggestions by Codota
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

public static Document generatePsiData(Collection<Interaction> interactions, PsiVersion psiVersion, CvMapping cvMapping)
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  return generatePsiData(interactions, session);
}
origin: uk.ac.ebi.intact.util/data-conversion

public static Document generatePsiData(Collection<Interaction> interactions, PsiVersion psiVersion, CvMapping cvMapping)
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  return generatePsiData(interactions, session);
}
origin: uk.ac.ebi.intact.app/data-conversion

public static Document generatePsiData(Collection<Interaction> interactions, PsiVersion psiVersion, CvMapping cvMapping)
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  return generatePsiData(interactions, session);
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Converts a list of experiments to PSI XML, providing the experiment labels
 *
 * @param eli The ExperimentListItem, which contaisn information about the experiment to be fetched, the pagination and files
 * @param psiVersion The version of PSI to use
 * @param cvMapping The cv mapping
 * @return The Document containing the PSI XML
 */
public static Document generatePsiData(ExperimentListItem eli, PsiVersion psiVersion, CvMapping cvMapping)
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  Collection<Interaction> interactions = getInteractionsForExperimentListItem(eli);
  return generatePsiData(interactions, session);
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

UserSessionDownload session = new UserSessionDownload( version );
if ( mapping != null ) {
  session.setReverseCvMapping( mapping );
origin: uk.ac.ebi.intact.app/data-conversion

UserSessionDownload session = new UserSessionDownload( version );
if ( mapping != null ) {
  session.setReverseCvMapping( mapping );
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Converts a list of experiments to PSI XML, providing the experiment labels
 *
 * @param eli The ExperimentListItem, which contaisn information about the experiment to be fetched, the pagination and files
 * @param psiVersion The version of PSI to use
 * @param cvMapping The cv mapping
 * @return The Document containing the PSI XML
 */
public static Document generatePsiData(ExperimentListItem eli, PsiVersion psiVersion, CvMapping cvMapping)
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  Collection<Interaction> interactions = getInteractionsForExperimentListItem(eli);
  return generatePsiData(interactions, session);
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Converts a list of experiments to PSI XML, providing the experiment labels
 *
 * @param eli The ExperimentListItem, which contaisn information about the experiment to be fetched, the pagination and files
 * @param psiVersion The version of PSI to use
 * @param cvMapping The cv mapping
 * @return The Document containing the PSI XML
 */
public static Document generatePsiData(ExperimentListItem eli, PsiVersion psiVersion, CvMapping cvMapping)
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  Collection<Interaction> interactions = getInteractionsForExperimentListItem(eli);
  return generatePsiData(interactions, session);
}
origin: uk.ac.ebi.intact.util/data-conversion

UserSessionDownload session = new UserSessionDownload( version );
if ( mapping != null ) {
  session.setReverseCvMapping( mapping );
origin: uk.ac.ebi.intact.util/data-conversion

UserSessionDownload session = new UserSessionDownload( version );
if ( mapping != null ) {
  session.setReverseCvMapping( mapping );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

UserSessionDownload session = new UserSessionDownload( version );
if ( mapping != null ) {
  session.setReverseCvMapping( mapping );
origin: uk.ac.ebi.intact.app/data-conversion

UserSessionDownload session = new UserSessionDownload( version );
if ( mapping != null ) {
  session.setReverseCvMapping( mapping );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Writes a file containing the PSI XML, with the interactions provided
 *
 * @param interactions
 * @param psiVersion
 * @param cvMapping
 * @param xmlTargetFile
 * @param validate
 * @return
 * @throws IOException
 */
public static PsiValidatorReport writePsiData(Collection<Interaction> interactions,
                  PsiVersion psiVersion,
                  CvMapping cvMapping,
                  File xmlTargetFile, boolean validate) throws IOException
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  Document doc =  generatePsiData(interactions, session);
  if (doc == null)
  {
    return new PsiValidatorReport();
  }
  return writeFile(doc, xmlTargetFile, validate);
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Writes a file containing the PSI XML, with the interactions provided
 *
 * @param interactions
 * @param psiVersion
 * @param cvMapping
 * @param xmlTargetFile
 * @param validate
 * @return
 * @throws IOException
 */
public static PsiValidatorReport writePsiData(Collection<Interaction> interactions,
                  PsiVersion psiVersion,
                  CvMapping cvMapping,
                  File xmlTargetFile, boolean validate) throws IOException
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  Document doc =  generatePsiData(interactions, session);
  if (doc == null)
  {
    return new PsiValidatorReport();
  }
  return writeFile(doc, xmlTargetFile, validate);
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Writes a file containing the PSI XML, with the interactions provided
 *
 * @param interactions
 * @param psiVersion
 * @param cvMapping
 * @param xmlTargetFile
 * @param validate
 * @return
 * @throws IOException
 */
public static PsiValidatorReport writePsiData(Collection<Interaction> interactions,
                  PsiVersion psiVersion,
                  CvMapping cvMapping,
                  File xmlTargetFile, boolean validate) throws IOException
{
  UserSessionDownload session = new UserSessionDownload(psiVersion);
  if (cvMapping != null)
  {
    session.setReverseCvMapping(cvMapping);
  }
  Document doc =  generatePsiData(interactions, session);
  if (doc == null)
  {
    return new PsiValidatorReport();
  }
  return writeFile(doc, xmlTargetFile, validate);
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

System.out.println( version );
UserSessionDownload session = new UserSessionDownload( version );
session.filterObsoleteAnnotationTopic();
origin: uk.ac.ebi.intact.util/data-conversion

System.out.println( version );
UserSessionDownload session = new UserSessionDownload( version );
session.filterObsoleteAnnotationTopic();
origin: uk.ac.ebi.intact.app/data-conversion

System.out.println( version );
UserSessionDownload session = new UserSessionDownload( version );
session.filterObsoleteAnnotationTopic();
uk.ac.ebi.intact.application.dataConversion.psiDownloadUserSessionDownload<init>

Popular methods of UserSessionDownload

  • addMessage
  • createElement
  • createTextNode
  • declareAlreadyDefined
    Declare in the session that the given protein has been already converted in XML.
  • filterObsoleteAnnotationTopic
    Load all CvTopic and check which one have been flagged 'obsolete'. Those CvTopic are automatically a
  • getAvailabilityListElement
    Return the availabilityList element under the entry of the PSI document. If the element doesn't exis
  • getCvObjectCache
  • getEntryElement
    Return the entry element of the PSI document. If the element doesn't exist, it is created.
  • getExperimentIdentifier
    Get a specific identifier for the given experiemnt. If an identifier had already been affected for t
  • getExperimentListElement
    Return the experimentList element under the entry of the PSI document. If the element doesn't exist,
  • getFeatureIdentifier
    Get a specific identifier for the given feature. If an identifier had already been affected for that
  • getHostOrganismCache
  • getFeatureIdentifier,
  • getHostOrganismCache,
  • getInteractionIdentifier,
  • getInteractionListElement,
  • getInteractorIdentifier,
  • getInteractorListElement,
  • getMessages,
  • getNextClusterIdSuffix,
  • getNextObjectIdentifier

Popular in Java

  • Updating database using SQL prepared statement
  • getExternalFilesDir (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • putExtra (Intent)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JTextField (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Option (scala)
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