Advertisement
Guest User

standalone

a guest
May 21st, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.71 KB | None | 0 0
  1.  
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  3.  
  4. <html>
  5.   <head>
  6.     <!--<title>Overview of usage</title>-->
  7.   </head>
  8.   <body>
  9.     Description of how Standalone AutoCSA can be integrated into a pipeline.
  10.     <br/><br/>
  11.     If you wish to use this package as part of your pipeline, but with more control of the processing, the following methods do the actual work and must be run in the following order:
  12.     <br/>
  13.    
  14.     <ul>
  15.       <li>Populate a TraceGroupBean via {@link uk.ac.sanger.cgp.standalonecsa.interfaces.FileLocatorService#getAmplimerGroup(List files, AmplimerBean amplimer)}, or by constructing in a way suitable for your system.</li>
  16.       <li>
  17.         Call {@link uk.ac.sanger.cgp.standalonecsa.interfaces.AnalysisService#analyseTraceGroup(TraceGroupBean tgb)}
  18.       </li>
  19.       <li>
  20.         Call {@link uk.ac.sanger.cgp.standalonecsa.interfaces.AnalysisService#compareTraceGroup(TraceGroupBean tgb)}
  21.       </li>
  22.     </ul>
  23.    
  24.     <ul>
  25.       <b>AnalysisService.analyseTraceGroup(TraceGroupBean tgb)</b> performs:
  26.       <ul>
  27.         <li>initial trace analysis</li>
  28.       </ul>
  29.       <b>AnalysisService.compareTraceGroup(TraceGroupBean tgb)</b> performs:
  30.       <ul>
  31.         <li>comparison of sample and reference</li>
  32.         <li>flagging (based on sandaloneCsa.properties)</li>
  33.         <li>annotation</li>
  34.         <li>removal of variants outside of ROI (based on sandaloneCsa.properties)</li>
  35.       </ul>
  36.     </ul>
  37.    
  38.     This will give you the raw results from the analysis system.
  39.    
  40.     <ul>
  41.       If you wish to generate images:
  42.       <ul>
  43.         <li>To generate a full trace image call:<br/><b>{@link uk.ac.sanger.cgp.standalonecsa.interfaces.ChromatogramService#generateFullChrom(String imageLoc, ExperimentBean expBean, boolean writeImage, boolean drawBaseChar)}</b></li>
  44.         <li>To generate the 4 images as used in the variant view call:<br/><b>{@link uk.ac.sanger.cgp.standalonecsa.interfaces.ChromatogramService#generateVariantViewSet(String imageLoc, ExperimentBean expBean, ExperimentBean normExp, boolean drawBaseChar, boolean writeToFile)}</b></li>
  45.         <li>As previous, but only generates the image for the specified ExperimentBean call:<br/><b>{@link uk.ac.sanger.cgp.standalonecsa.interfaces.ChromatogramService#generateVariantViewSingle(String pathRoot, ExperimentBean expBean, boolean writeToFile, boolean drawBaseChar)}</b></li>
  46.         <li>To generate the image as used in the complex variant view call:<br/><b>{@link uk.ac.sanger.cgp.standalonecsa.interfaces.ChromatogramService#generateComplexVariantView(String pathRoot, ExperimentBean expBean, ExperimentBean wtExp, boolean drawBaseChar, boolean writeToFile)}</b></li>
  47.       </ul>
  48.     </ul>
  49.   </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement