org.biomart.martservice.query.Query.getAttributes()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(758)

本文整理了Java中org.biomart.martservice.query.Query.getAttributes方法的一些代码示例,展示了Query.getAttributes的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getAttributes方法的具体详情如下:
包路径:org.biomart.martservice.query.Query
类名称:Query
方法名:getAttributes

Query.getAttributes介绍

暂无

代码示例

代码示例来源:origin: net.sf.taverna.t2.activities/biomart-activity

  1. private void buildOutputPorts(List<Edit<?>> editList) {
  2. Map<String, OutputPort> newOutputMap = new HashMap<String, OutputPort>();
  3. Query query = biomartQuery.getQuery();
  4. List<Attribute> attributes = query.getAttributes();
  5. String formatter = query.getFormatter();
  6. if (formatter == null) {

代码示例来源:origin: net.sf.taverna.t2/biomart-activity

  1. private void buildOutputPorts() {
  2. Query query = biomartQuery.getQuery();
  3. List<Attribute> attributes = query.getAttributes();
  4. String formatter = query.getFormatter();
  5. if (formatter == null) {
  6. // Create new output ports corresponding to attributes
  7. for (Attribute attribute : attributes) {
  8. String name = attribute.getQualifiedName();
  9. if (attribute.getAttributes() != null) {
  10. addOutput(name, 2, STREAM_RESULTS?1:2);
  11. } else {
  12. addOutput(name, 1, STREAM_RESULTS?0:1);
  13. }
  14. }
  15. } else if (attributes.size() > 0) {
  16. // create one port using the dataset name
  17. Attribute attribute = attributes.get(0);
  18. String name = attribute.getContainingDataset().getName();
  19. addOutput(name, 0, 0);
  20. }
  21. }

代码示例来源:origin: uk.org.mygrid.taverna.processors/taverna-biomart-processor

  1. private void buildOutputPortsFromQuery() throws PortCreationException,
  2. DuplicatePortNameException {
  3. List<Attribute> attributes = query.getQuery().getAttributes();
  4. Set<String> attributeNames = new HashSet<String>();
  5. String formatter = query.getQuery().getFormatter();

代码示例来源:origin: net.sf.taverna.t2.activities/biomart-activity-ui

  1. @Override
  2. protected String getRawTableRowsHtml() {
  3. MartQuery q = MartServiceXMLHandler.elementToMartQuery(getConfigBean(), null);
  4. String html="<tr><td>URL</td><td>"+q.getMartService().getLocation()+"</td></tr>";
  5. html+="<tr><td>Location</td><td>"+q.getMartDataset().getMartURLLocation().getDisplayName() + "</td></tr>";
  6. boolean firstFilter=true;
  7. for (Filter filter : q.getQuery().getFilters()) {
  8. html+=firstFilter ? "<tr><td>Filter</td><td>" : "<tr><td></td></td>";
  9. firstFilter=false;
  10. html+=filter.getName()+"</td></tr>";
  11. }
  12. boolean firstAttribute=true;
  13. for (Attribute attribute : q.getQuery().getAttributes()) {
  14. html+=firstAttribute ? "<tr><td>Attribute</td><td>" : "<tr><td></td><td>";
  15. firstAttribute=false;
  16. html+=attribute.getName()+"</td></tr>";
  17. }
  18. html+="<tr><td>Dataset</td><td>"+q.getMartDataset().getDisplayName()+"</td></tr>";
  19. return html;
  20. }

代码示例来源:origin: net.sf.taverna.t2.ui-activities/biomart-activity-ui

  1. @Override
  2. protected String getRawTableRowsHtml() {
  3. MartQuery q = MartServiceXMLHandler.elementToMartQuery(getConfigBean(), null);
  4. String html="<tr><td>URL</td><td>"+q.getMartService().getLocation()+"</td></tr>";
  5. html+="<tr><td>Location</td><td>"+q.getMartDataset().getMartURLLocation().getDisplayName() + "</td></tr>";
  6. boolean firstFilter=true;
  7. for (Filter filter : q.getQuery().getFilters()) {
  8. html+=firstFilter ? "<tr><td>Filter</td><td>" : "<tr><td></td></td>";
  9. firstFilter=false;
  10. html+=filter.getName()+"</td></tr>";
  11. }
  12. boolean firstAttribute=true;
  13. for (Attribute attribute : q.getQuery().getAttributes()) {
  14. html+=firstAttribute ? "<tr><td>Attribute</td><td>" : "<tr><td></td><td>";
  15. firstAttribute=false;
  16. html+=attribute.getName()+"</td></tr>";
  17. }
  18. html+="<tr><td>Dataset</td><td>"+q.getMartDataset().getDisplayName()+"</td></tr>";
  19. return html;
  20. }

相关文章