dictyBase / frontendx

BSD 2-Clause "Simplified" License
0 stars 0 forks source link

Implement gene ontology tab #686

Open cybersiddhu opened 6 months ago

cybersiddhu commented 6 months ago

As the title says, do it for the genome(gene) page.

cybersiddhu commented 6 months ago

685

ktun95 commented 4 months ago
ktun95 commented 4 months ago
query GeneOntologyAnnotation($gene: String!) {
  geneOntologyAnnotation(gene: $gene) {
    id
    type
    date
    go_term
    evidence_code
    qualifier
    publication
    assigned_by
    with {
      id
      db
      name
    }
    extensions {
      id
      db
      relation
      name
    }
  }
}

geneOntologyAnnotation(gene: String!): [GOAnnotation!]

type GOAnnotation {
  id: String!
  type: String!
  date: String!
  evidence_code: String!
  go_term: String!
  qualifier: String!
  publication: String!
  with: [With!]
  extensions: [Extension!]
  assigned_by: String!
}