Skip to content

Commit

Permalink
Updates for new PyGenePlexus release (#56)
Browse files Browse the repository at this point in the history
- update GCP functions to use geneplexus v2.0.1
- update frontend links to readthedocs to look for v2.0.1
  • Loading branch information
ChristopherMancuso authored Dec 18, 2024
1 parent dbc290b commit 4d603cf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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/latest/appendix/license.html"
to="https://pygeneplexus.readthedocs.io/en/v2.0.2/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/latest/"
to="https://pygeneplexus.readthedocs.io/en/v2.0.2/"
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/latest/notes/faqs.html"
to="https://pygeneplexus.readthedocs.io/en/v2.0.2/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/latest/">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.2/">
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/latest/notes/faqs.html">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.2/notes/faqs.html">
Looking for the old GenePlexus?
</Link>
</p>
Expand Down
4 changes: 2 additions & 2 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/latest/notes/data.html#preprocessed-data */
/** https://pygeneplexus.readthedocs.io/en/v2.0.2/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/latest/notes/data.html">
<Link to="https://pygeneplexus.readthedocs.io/en/v2.0.2/notes/data.html">
Learn more
</Link>
.
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 @ git+https://github.com/krishnanlab/PyGenePlexus@610ad9a
geneplexus==2.0.2
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 @ git+https://github.com/krishnanlab/PyGenePlexus@610ad9a
geneplexus==2.0.2
flask-compress==1.*

0 comments on commit 4d603cf

Please sign in to comment.