3.0.6 • Published 10 months ago

gene-essentiality-chart v3.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

Major release with added new features.

Step 1 - Import the package

import { GeneEssentialityChart } from 'gene-essentiality-chart'

Note: Tailwind CSS is required for proper styling of this component.

Example:

import { useState } from "react"
import { GeneSearchForm } from "./Form"
import { GeneEssentialityChart } from "gene-essentiality-chart"

export default function MainGeneMap() {
  const [ensemblId, setEnsemblId] = useState("")
  const [loading, setLoading] = useState(false)
  const [error, setError] = useState("")

  return (
    <div className="space-y-4">
      <GeneEssentialityChart
        ensemblId={ensemblId}
        setLoading={setLoading}
        setError={setError}
      />
    </div>
  )
}

Features

  • Search by:
    • Tissue
    • Cell Line
    • Disease
    • Expression
    • DepMap ID
  • Sort by:
    • Neutral
    • Dependency
    • Highlighted Neutral
    • Highlighted Dependency
    • Tissue name
  • Adjustable side bar
    • Able to adjust side bar width
  • Export as csv
    • Able to export as csv

Testing

The app should be tested with the following genes:

  • BRCA1 (ENSG00000012048)
  • BRCA2 (ENSG00000139618)
  • TP53 (ENSG00000141510)
  • EGFR (ENSG00000146648)

Ensure the following:

  • The gene essentiality map renders correctly.
  • The tooltip displays relevant data when hovering over the plot.
  • Errors are handled gracefully, especially for invalid EnsemblIDs.
3.0.7

10 months ago

3.0.6

10 months ago

3.0.5

10 months ago

3.0.4

10 months ago

3.0.3

10 months ago

3.0.2

10 months ago

3.0.1

10 months ago

1.1.0

10 months ago

2.0.1

10 months ago

2.0.0

10 months ago

1.0.3

10 months ago

1.0.0

10 months ago