Class CompositeSequenceController
- java.lang.Object
-
- ubic.gemma.web.controller.BaseController
-
- ubic.gemma.web.controller.expression.designElement.CompositeSequenceController
-
@Controller @RequestMapping("/compositeSequence") public class CompositeSequenceController extends BaseController
- Author:
- joseph, paul
-
-
Field Summary
-
Fields inherited from class ubic.gemma.web.controller.BaseController
log, messageSource, messageUtil
-
-
Constructor Summary
Constructors Constructor Description CompositeSequenceController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.web.servlet.ModelAndView
filter(String filter, String arid)
Collection<CompositeSequenceMapValueObject>
getCsSummaries(Collection<Long> ids)
Exposed for AJAX calls (Probe browser) FIXME can probably remove soon since we should use getGeneCsSummaries?Collection<CompositeSequenceMapValueObject>
getGeneCsSummaries(Long geneId)
Exposed for AJAX calls (Elements tab on gene details page)Collection<GeneMappingSummary>
getGeneMappingSummary(EntityDelegator<CompositeSequence> csd)
Exposed for AJAX calls.void
initBinder(org.springframework.web.bind.WebDataBinder binder)
Collection<CompositeSequenceMapValueObject>
search(String searchString, String arrayDesignId)
org.springframework.web.servlet.ModelAndView
show(Long id)
-
-
-
Method Detail
-
filter
@RequestMapping(value="/filter", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView filter(@RequestParam("filter") String filter, @RequestParam("arid") String arid)
-
getCsSummaries
public Collection<CompositeSequenceMapValueObject> getCsSummaries(Collection<Long> ids)
Exposed for AJAX calls (Probe browser) FIXME can probably remove soon since we should use getGeneCsSummaries? Might be another use for this
-
getGeneCsSummaries
public Collection<CompositeSequenceMapValueObject> getGeneCsSummaries(Long geneId)
Exposed for AJAX calls (Elements tab on gene details page)
-
getGeneMappingSummary
public Collection<GeneMappingSummary> getGeneMappingSummary(EntityDelegator<CompositeSequence> csd)
Exposed for AJAX calls.
-
initBinder
@InitBinder public void initBinder(org.springframework.web.bind.WebDataBinder binder)
-
search
public Collection<CompositeSequenceMapValueObject> search(String searchString, String arrayDesignId) throws SearchException
- Throws:
SearchException
-
show
@RequestMapping(value="/show", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView show(@RequestParam("id") Long id)
-
-