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

updated OSSI description #280

Merged
merged 4 commits into from
Jul 25, 2024
Merged
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 added src/assets/images/ossi_phases-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 50 additions & 12 deletions src/pages/ossi.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import Hero from "../components/Hero";
import TextBlock from "../components/TextBlock.astro";
import Wrapper from "../components/Wrapper.astro";

import ossiPhasesImg from "../assets/images/ossi_phases.png";
import ossiPhasesImgWhite from "../assets/images/ossi_phases-white.png";
import ossiPhasesImgBlack from "../assets/images/ossi_phases-black.png";

const baseUrl = import.meta.env.BASE_URL;
---

<BaseLayout>
Expand Down Expand Up @@ -55,7 +58,7 @@ import ossiPhasesImg from "../assets/images/ossi_phases.png";
href="https://www.janelia.org/node/45241"
target="_blank"
style={"color: var(--color-primary)"}
>Scientific Computing Software (SciComp)</a
>Scientific Computing Software (SciCompSoft)</a
> created the <span style={"font-weight: bold"}
>Open Science Software Initiative (OSSI)</span
> to support Janelia researchers in their efforts to create impactful open
Expand Down Expand Up @@ -91,16 +94,22 @@ import ossiPhasesImg from "../assets/images/ossi_phases.png";
updates. A project may be moved back to
<b>Active Development</b> if additional features are needed and funding is
available. If a project's usefulness to the open science community declines,
it may be moved to a <b>Graceful End</b> statewhich signifies a closing of
OSSI involvement with the project. This may involve a hand-off or project
it may be moved to a <b>Graceful End</b> state which signifies a closing
of OSSI involvement with the project. This may involve a hand-off or project
archival. All of these lifecycle decisions are made in close collaboration
with the project owners.
</Fragment>
</TextBlock>
<div class="max-w-fit">
<Image
src={ossiPhasesImg}
src={ossiPhasesImgWhite}
alt="Phase diagram of OSSI projects. Projects move linearly from 'proposed' to 'accepted' to 'active development.' From there, projects cycle between 'active development' and 'maintenance.' The final phase is 'graceful end.'"
class="hidden dark:block"
/>
<Image
src={ossiPhasesImgBlack}
alt="Phase diagram of OSSI projects. Projects move linearly from 'proposed' to 'accepted' to 'active development.' From there, projects cycle between 'active development' and 'maintenance.' The final phase is 'graceful end.'"
class="block dark:hidden"
/>
<p class="self-start italic pb-4">
The phases of an OSSI-funded project.
Expand All @@ -110,13 +119,42 @@ import ossiPhasesImg from "../assets/images/ossi_phases.png";
<TextBlock>
<Fragment slot="subtitle">Details</Fragment>
<Fragment slot="content">
The creation of OSSI was encouraged by the strong open science community
at Janelia. The specifics were finalized by Kristin Branson, Reed
George, Wyatt Korff, Stephan Preibisch, Konrad Rokicki, Stephan
Saalfeld, and Ron Vale. OSSI is funded through the Technology and Open
Science Center fund (SciComp internal funding) with strong support from
Wyatt Korff (project teams), Reed George (Scientific Operations), the
Saalfeld lab, and the executive director of Janelia (Ron Vale).
The creation of OSSI in 2022 was encouraged by the strong open science
community at Janelia. The specifics were finalized by
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/kristin-branson"
>Kristin Branson</a
>,
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/reed-george">Reed George</a
>,
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/wyatt-korff">Wyatt Korff</a
>,
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/stephan-preibisch"
>Stephan Preibisch</a
>,
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/konrad-rokicki">Konrad Rokicki</a
>,
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/stephan-saalfeld"
>Stephan Saalfeld</a
>, and
<a
style={"color: var(--color-primary)"}
href="https://www.janelia.org/people/ronald-vale">Ron Vale</a
>. OSSI is funded through the Technology and Open Science Center fund
(SciCompSoft internal funding) with strong support from Wyatt Korff
(project teams), Reed George (Scientific Operations), the Saalfeld lab,
and the executive director of Janelia (Ron Vale).
</Fragment>
</TextBlock>
</Wrapper>
Expand Down