Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes due to fix in how PyGenePlexus scaled the data #57

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified frontend/src/assets/highlight-network.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/src/assets/highlight-predictions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/src/assets/highlight-similarities.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Footer = () => (
</Link>
<Link to="/about#terms-of-use">Terms of Use</Link>
<Link
to="https://pygeneplexus.readthedocs.io/en/v2.0.2/appendix/license.html"
to="https://pygeneplexus.readthedocs.io/en/v2.0.4/appendix/license.html"
showArrow={false}
>
License
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const AboutPage = () => {
flip
/>
<Button
to="https://pygeneplexus.readthedocs.io/en/v2.0.2/"
to="https://pygeneplexus.readthedocs.io/en/v2.0.4/"
text="Docs"
icon={<FaBook />}
tooltip="Detailed information on how to use the package and how to interpret results"
Expand All @@ -88,7 +88,7 @@ const AboutPage = () => {
flip
/>
<Button
to="https://pygeneplexus.readthedocs.io/en/v2.0.2/notes/faqs.html"
to="https://pygeneplexus.readthedocs.io/en/latest/notes/faqs.html"
text="FAQs"
icon={<FaQuestion />}
tooltip="Detailed help on some frequently asked questions"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Analysis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const AnalysisPage = () => {
<>
<Summary results={results} />

<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.2/">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.4/">
Learn more
</Link>

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const HomePage = () => {
</Flex>

<p className="center">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.2/notes/faqs.html">
<Link to="https://pygeneplexus.readthedocs.io/en/latest/notes/faqs.html">
Looking for the old GenePlexus?
</Link>
</p>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/NewAnalysis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const NewAnalysisPage = () => {
};

/** limit options based on species */
/** https://pygeneplexus.readthedocs.io/en/v2.0.2/notes/data.html#preprocessed-data */
/** https://pygeneplexus.readthedocs.io/en/v2.0.4/notes/data.html#preprocessed-data */
const filteredNetworkOptions = networkOptions.filter((option) => {
if (
option.id === "BioGRID" &&
Expand Down Expand Up @@ -302,7 +302,7 @@ const NewAnalysisPage = () => {
toast(
<>
Selected options changed to be compatible with selected species.{" "}
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.2/notes/data.html">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.4/notes/data.html">
Learn more
</Link>
.
Expand Down Expand Up @@ -483,7 +483,7 @@ const NewAnalysisPage = () => {
</>
}
/>
<Link to="https://pygeneplexus.readthedocs.io/en/latest/notes/data.html">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.4/notes/data.html">
Learn more
</Link>
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion functions/convert_ids/convert_ids_deploy/requirements.txt
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==2.0.2
geneplexus==2.0.4
2 changes: 1 addition & 1 deletion functions/ml/ml_deploy/requirements.txt
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==2.0.2
geneplexus==2.0.4
flask-compress==1.*