@@ -273,25 +273,6 @@ export default class ClinicalAnalysis extends OpenCGAParentClass {
273273 return this . _get ( "analysis" , null , "clinical/interpretation" , interpretations , "info" , params ) ;
274274 }
275275
276- /** Run cancer tiering interpretation analysis
277- * @param {Object } data - Cancer tiering interpretation analysis params.
278- * @param {Object } [params] - The Object containing the following optional parameters:
279- * @param {String } [params.study] - Study [[organization@]project:]study where study and project can be either the ID or UUID.
280- * @param {String } [params.jobId] - Job ID. It must be a unique string within the study. An ID will be autogenerated automatically if not
281- * provided.
282- * @param {String } [params.jobDescription] - Job description.
283- * @param {String } [params.jobDependsOn] - Comma separated list of existing job IDs the job will depend on.
284- * @param {String } [params.jobTags] - Job tags.
285- * @param {String } [params.jobScheduledStartTime] - Time when the job is scheduled to start.
286- * @param {String } [params.jobPriority] - Priority of the job.
287- * @param {Boolean } [params.jobDryRun] - Flag indicating that the job will be executed in dry-run mode. In this mode, OpenCGA will
288- * validate that all parameters and prerequisites are correctly set for successful execution, but the job will not actually run.
289- * @returns {Promise } Promise object in the form of RestResponse instance.
290- */
291- runInterpreterCancerTiering ( data , params ) {
292- return this . _post ( "analysis" , null , "clinical/interpreter/cancerTiering" , null , "run" , data , params ) ;
293- }
294-
295276 /** Run exomiser interpretation analysis
296277 * @param {Object } data - Exomiser interpretation analysis params.
297278 * @param {Object } [params] - The Object containing the following optional parameters:
@@ -311,46 +292,8 @@ export default class ClinicalAnalysis extends OpenCGAParentClass {
311292 return this . _post ( "analysis" , null , "clinical/interpreter/exomiser" , null , "run" , data , params ) ;
312293 }
313294
314- /** Run TEAM interpretation analysis
315- * @param {Object } data - TEAM interpretation analysis params.
316- * @param {Object } [params] - The Object containing the following optional parameters:
317- * @param {String } [params.study] - Study [[organization@]project:]study where study and project can be either the ID or UUID.
318- * @param {String } [params.jobId] - Job ID. It must be a unique string within the study. An ID will be autogenerated automatically if not
319- * provided.
320- * @param {String } [params.jobDescription] - Job description.
321- * @param {String } [params.jobDependsOn] - Comma separated list of existing job IDs the job will depend on.
322- * @param {String } [params.jobTags] - Job tags.
323- * @param {String } [params.jobScheduledStartTime] - Time when the job is scheduled to start.
324- * @param {String } [params.jobPriority] - Priority of the job.
325- * @param {Boolean } [params.jobDryRun] - Flag indicating that the job will be executed in dry-run mode. In this mode, OpenCGA will
326- * validate that all parameters and prerequisites are correctly set for successful execution, but the job will not actually run.
327- * @returns {Promise } Promise object in the form of RestResponse instance.
328- */
329- runInterpreterTeam ( data , params ) {
330- return this . _post ( "analysis" , null , "clinical/interpreter/team" , null , "run" , data , params ) ;
331- }
332-
333- /** Run tiering interpretation analysis
334- * @param {Object } data - Tiering interpretation analysis params.
335- * @param {Object } [params] - The Object containing the following optional parameters:
336- * @param {String } [params.study] - Study [[organization@]project:]study where study and project can be either the ID or UUID.
337- * @param {String } [params.jobId] - Job ID. It must be a unique string within the study. An ID will be autogenerated automatically if not
338- * provided.
339- * @param {String } [params.jobDescription] - Job description.
340- * @param {String } [params.jobDependsOn] - Comma separated list of existing job IDs the job will depend on.
341- * @param {String } [params.jobTags] - Job tags.
342- * @param {String } [params.jobScheduledStartTime] - Time when the job is scheduled to start.
343- * @param {String } [params.jobPriority] - Priority of the job.
344- * @param {Boolean } [params.jobDryRun] - Flag indicating that the job will be executed in dry-run mode. In this mode, OpenCGA will
345- * validate that all parameters and prerequisites are correctly set for successful execution, but the job will not actually run.
346- * @returns {Promise } Promise object in the form of RestResponse instance.
347- */
348- runInterpreterTiering ( data , params ) {
349- return this . _post ( "analysis" , null , "clinical/interpreter/tiering" , null , "run" , data , params ) ;
350- }
351-
352- /** Run Zetta interpretation analysis
353- * @param {Object } data - Zetta interpretation analysis params.
295+ /** Run clinical interpretation analysis for rare diseases
296+ * @param {Object } data - Parameters to execute the rare disease interpretation analysis.
354297 * @param {Object } [params] - The Object containing the following optional parameters:
355298 * @param {String } [params.study] - Study [[organization@]project:]study where study and project can be either the ID or UUID.
356299 * @param {String } [params.jobId] - Job ID. It must be a unique string within the study. An ID will be autogenerated automatically if not
@@ -364,8 +307,8 @@ export default class ClinicalAnalysis extends OpenCGAParentClass {
364307 * validate that all parameters and prerequisites are correctly set for successful execution, but the job will not actually run.
365308 * @returns {Promise } Promise object in the form of RestResponse instance.
366309 */
367- runInterpreterZetta ( data , params ) {
368- return this . _post ( "analysis" , null , "clinical/interpreter/zetta " , null , "run" , data , params ) ;
310+ runInterpreterRd ( data , params ) {
311+ return this . _post ( "analysis" , null , "clinical/interpreter/rd " , null , "run" , data , params ) ;
369312 }
370313
371314 /** Load clinical analyses from a file
0 commit comments