🌵
Drylab
  • BASICS
    • 🌵Welcome to Drylab
  • API
    • 🌵API Overview
    • 💻Endpoints
      • POST /methods/raw
      • POST /methods/sections
      • POST /results/raw
      • POST /results/thematic-blocks
      • POST /results/thematic-modules
      • POST /figure-legends
      • POST /supplement
      • POST /create-conda-env
      • POST /datasets
  • CLI
    • 🌵DryLab CLI
    • 🔧Config file
    • Commands
      • drylab init
      • drylab env
Powered by GitBook
On this page
  • Request
  • Response
  1. API
  2. Endpoints

POST /datasets

Get the every dataset mentioned and used in a scientific paper.

Input: DOI or a PDF of a scientific paper.

Request

Content-Type: multipart/form-data

Accepted keys: doi and file

JSON Body (if using DOI):

{
  "doi": "10.1038/s41592-020-01005-z"
}

JSON Body (if uploading a PDF):

file: "path_to_file.pdf"

Note: If both a doi and a file key are present in the request, the API uses the file key by default.

Response

{
  "doi": "10.3390/ijms22031484",
  "paper_input_type": "doi",
  "pdf_url": "https://europepmc.org/articles/pmc7867340?pdf=render",
  "pmcid": "PMC7867340",
  "dataset_info": [
    {
      "repository": "NCBI GEO",
      "accessionId": "GSE69637",
      "link": null,
      "description": "RNA-seq data for primary human saphenous vein SMCs (svSMCs) under quiescent or stimulated conditions (interleukin-1a and/or platelet-derived growth factor-BB), obtained from the study [10]."
    },
    {
      "repository": "NCBI GEO",
      "accessionId": "GSE100081",
      "link": null,
      "description": "RNA-seq data for primary aortic (aoSMCs) or coronary artery (caSMCs) VSMCs cultured on soft or stiff matrices, obtained from the study [21]."
    },
    {
      "repository": "Reference [22]",
      "accessionId": null,
      "link": null,
      "description": "RNA-seq data for VSMCs isolated from carotid plaques of symptomatic vs asymptomatic patients, obtained by direct transfer from the authors of study [22]."
    }
  ]
}

PreviousPOST /create-conda-envNextDryLab CLI

Last updated 4 days ago

💻