Rat Genome Database

The Rat Genome Database (RGD) was established in 1999 and is the premier site for genetic, genomic, phenotype, and disease data generated from rat research

Integrate the Rat Genome Database API with the Formatting API

Setup the Rat Genome Database API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Rat Genome Database and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Rat Genome Database

The Rat Genome Database (RGD) API provides access to a wealth of genetic and genomic data related to rats, a key model organism in medical research. Via this API, researchers can query for gene information, phenotypic data, and genomic sequences, creating a treasure trove for geneticists, bioinformaticians, and medical researchers seeking to understand disease pathways and potential treatments. On Pipedream, this can be leveraged to automate data retrieval, sync genetic information with other databases, or trigger workflows based on specific genomic updates or criteria.

Connect Rat Genome Database

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rat_genome_database: {
      type: "app",
      app: "rat_genome_database",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://rest.rgd.mcw.edu/rgdws/lookup/geneTypes`,
      headers: {
        "Accept": `*/*`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})