-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feedback for fixes from external feedback (#55)
- changed figure on landing page to be gene symbols not names - updated some text on the landing page - updated a few tooltips - added a button for FAQs page - added min number of genes to train the model --------- Co-authored-by: Vincent Rubinetti <[email protected]>
- Loading branch information
1 parent
edc214d
commit 03329cc
Showing
9 changed files
with
162 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
VITE_TITLE=GenePlexus | ||
VITE_DESCRIPTION=GenePlexus enables researchers to predict novel genes similar to genes of interest based on their patterns of connectivity in human genome-scale networks. | ||
VITE_DESCRIPTION=GenePlexus enables researchers to predict genes similar to an uploaded geneset of interest based on patterns of connectivity in genome-scale molecular interaction networks, with the ability to translate these findings across species. | ||
VITE_URL=https://geneplexus.net | ||
VITE_OLD_URL=https://geneplexus-old.net | ||
VITE_API=https://us-central1-gap-som-dbmi-geneplx-app-p0n.cloudfunctions.net |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import type { ComponentProps } from "react"; | ||
import clsx from "clsx"; | ||
import Mark from "@/components/Mark"; | ||
import classes from "./Alert.module.css"; | ||
|
||
/** static box of certain type with icon and text contents */ | ||
const Alert = (props: ComponentProps<typeof Mark>) => { | ||
return <Mark className={classes.alert} {...props}></Mark>; | ||
const Alert = ({ className, ...props }: ComponentProps<typeof Mark>) => { | ||
return <Mark className={clsx(classes.alert, className)} {...props}></Mark>; | ||
}; | ||
|
||
export default Alert; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# An example requirements file. If your function has other dependencies, | ||
# add them below | ||
functions-framework==3.* | ||
geneplexus @ git+https://github.com/krishnanlab/PyGenePlexus@122aa2c | ||
geneplexus @ git+https://github.com/krishnanlab/PyGenePlexus@610ad9a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# An example requirements file. If your function has other dependencies, | ||
# add them below | ||
functions-framework==3.* | ||
geneplexus @ git+https://github.com/krishnanlab/PyGenePlexus@122aa2c | ||
geneplexus @ git+https://github.com/krishnanlab/PyGenePlexus@610ad9a | ||
flask-compress==1.* |