API ConsoleWeng · Moore Lab

API Docs

Documentation for using the SCREEN GraphQL API.

Conservation

Get Conservation data

NOTE: You can also find orthogolous cCREs to download in other section of https://screen.wenglab.org/downloads

Get orthologous cCREs in another assembly

Returns orthogolous cCREs in mm10 for a given grch38 cCRE or vice versa.

  query {
    orthologQuery(accession: ["EH38E2941922"], assembly: "grch38") {
      assembly
      accession
      ortholog {
        stop
        start
        chromosome
        accession
      }
    }
  }

Get conservation scores for given cCRE

Returns conservation scores for given cCRE.

  query {
  getcCREConservationDataQuery(accession: ["EH38E3314260"]) {
    primates_43_phylop
    mammals_241_phylop
    vertebrates_100_phylop
    primates_43_phastcons
    vertebrates_100_phastcons
    mammals_241_phastcons   
  }
}