Uses of Class
edu.mayo.bsi.ngsportal.shared.RunData

Packages that use RunData
edu.mayo.bsi.ngsportal.client   
edu.mayo.bsi.ngsportal.server   
edu.mayo.bsi.ngsportal.shared   
 

Uses of RunData in edu.mayo.bsi.ngsportal.client
 

Methods in edu.mayo.bsi.ngsportal.client that return RunData
 RunData ReportsPage.RunTreeNode.getRunData()
           
 RunData ProjectExplorerPage.RunTreeNode.getRunData()
           
 

Methods in edu.mayo.bsi.ngsportal.client with parameters of type RunData
 void NGSPortal.displayRun(RunData result, String piName)
          Load the given run into the RunEditPanel
 void HandleRunData.onSuccess(RunData result)
           
 void MetadataTab.setMetadata(List<SampleInfo> theSamples, RunData theRunData, boolean isSecondaryDelivered)
          Update the displayed data, getting rid of what was previously displayed
 void NGSPortal.setRun(String piName, String runID, RunData runData, List<SampleInfo> samples, int[] deletedIDs, com.google.gwt.user.client.Command followUp)
          Update all the metadata for a given run, owned by a given PI
 void ReportsPage.RunTreeNode.setRunData(RunData runData)
           
 void ProjectExplorerPage.RunTreeNode.setRunData(RunData runData)
           
 void RunEditPanel.setRunInformation(RunData theRun, String pi)
          Set the tab to display the latest run data
 

Constructors in edu.mayo.bsi.ngsportal.client with parameters of type RunData
HandleMetadataResult(MetadataTab target, List<SampleInfo> theSamples, RunData theRunData)
          Standard Constructor
 

Uses of RunData in edu.mayo.bsi.ngsportal.server
 

Methods in edu.mayo.bsi.ngsportal.server that return RunData
 RunData NGSPortalServiceImpl.getRunData(int connectionID, String piName, String runID)
          Get all the metadata from a given run, owned by a given PI
 

Methods in edu.mayo.bsi.ngsportal.server that return types with arguments of type RunData
 List<RunData> NGSPortalServiceImpl.getCompletedRuns(int connectionID, String piName, String runID)
          Get all the completed runs
 

Methods in edu.mayo.bsi.ngsportal.server with parameters of type RunData
 boolean NGSPortalServiceImpl.setRunData(int connectionID, String piName, String runID, RunData theRun, List<SampleInfo> samples, int[] deletedIDs)
          Update all the metadata for a given run, owned by a given PI
 

Constructors in edu.mayo.bsi.ngsportal.server with parameters of type RunData
SampleData(ContactInfo thePI, RunData theRun, String sampleName, String appType, String readType, int lane, int cycles, int numReads, boolean isControl, boolean isIndexVendor, String indexSeq, String rlimsProjectID, String sampleFamilyID, String sampleParentID, String sampleRLIMSID)
          Constructor for PI and numReads
SampleData(RunData theRun, String sampleName, String appType, String readType, int lane, int cycles, boolean isControl, boolean isIndexVendor, String indexSeq, String rlimsProjectID, String sampleFamilyID, String sampleParentID, String sampleRLIMSID)
          Normal Constructor
 

Uses of RunData in edu.mayo.bsi.ngsportal.shared
 

Methods in edu.mayo.bsi.ngsportal.shared that return RunData
 RunData NGSPortalService.getRunData(int connectionID, String piName, String runID)
          Get all the metadata from a given run, owned by a given PI
 

Methods in edu.mayo.bsi.ngsportal.shared that return types with arguments of type RunData
 List<RunData> NGSPortalService.getCompletedRuns(int connectionID, String piName, String runID)
          Get all the completed runs
 

Methods in edu.mayo.bsi.ngsportal.shared with parameters of type RunData
 boolean NGSPortalService.setRunData(int connectionID, String piName, String runID, RunData theRun, List<SampleInfo> samples, int[] deletedIDs)
          Update all the metadata for a given run, owned by a given PI, and for its samples
 void NGSPortalServiceAsync.setRunData(int connectionID, String piName, String runID, RunData theRun, List<SampleInfo> samples, int[] deletedIDs, com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
           
 

Method parameters in edu.mayo.bsi.ngsportal.shared with type arguments of type RunData
 void NGSPortalServiceAsync.getCompletedRuns(int connectionID, String piName, String runID, com.google.gwt.user.client.rpc.AsyncCallback<List<RunData>> callback)
           
 void NGSPortalServiceAsync.getRunData(int connectionID, String piName, String runID, com.google.gwt.user.client.rpc.AsyncCallback<RunData> callback)