Class BioAssayController
- java.lang.Object
-
- ubic.gemma.web.controller.expression.bioAssay.BioAssayController
-
@Controller @RequestMapping("/bioAssay") public class BioAssayController extends Object
- Author:
- keshav
-
-
Constructor Summary
Constructors Constructor Description BioAssayController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<BioAssayValueObject>
getBioAssays(Long eeId)
String
markOutlier(Collection<Long> ids)
org.springframework.web.servlet.ModelAndView
show(Long id)
org.springframework.web.servlet.ModelAndView
showAllBioAssays(String sId)
String
unmarkOutlier(Collection<Long> ids)
-
-
-
Method Detail
-
getBioAssays
public Collection<BioAssayValueObject> getBioAssays(Long eeId)
-
markOutlier
public String markOutlier(Collection<Long> ids)
-
unmarkOutlier
public String unmarkOutlier(Collection<Long> ids)
-
show
@RequestMapping(value={"/showBioAssay.html","/"}, method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView show(@RequestParam("id") Long id)
-
showAllBioAssays
@RequestMapping(value="/showAllBioAssays.html", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView showAllBioAssays(@RequestParam(value="id",required=false) String sId)
-
-