-
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.
Added the Observatory About, resolved #83
- Loading branch information
Andrea
committed
Oct 22, 2024
1 parent
f64911a
commit 7676d57
Showing
1 changed file
with
108 additions
and
6 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,13 +1,115 @@ | ||
<template> | ||
<div> | ||
<NuxtLayout :name="layout"> | ||
<h1>About</h1> | ||
</NuxtLayout> | ||
<div> | ||
<NuxtLayout :name="layout"> | ||
<div class="p-4"> | ||
<div class="ml-6"> | ||
<div class="fs-4 fw-medium">About the Software Observatory</div> | ||
|
||
</div> | ||
<v-row justify="left"> | ||
<v-col md="10" sm="10" cols="10" lg="10" xl="10"> | ||
<p class="mb-6 mt-4"> | ||
The Software Observatory is designed as a dynamic tool to | ||
systematically monitor, assess, and elevate the quality of Life | ||
Sciences reearch software. Our mission is not just to observe but to | ||
actively foster the adoption of best practices in software development | ||
within the Life Sciences community. | ||
</p> | ||
|
||
<h6 class="fw-bold fs-5">Data Availability</h6> | ||
<p class="mb-6"> | ||
Software Metadata and statistics are made available through the | ||
<a href="https://observatory.openebench.bsc.es/docs/api/">Software Observatory API</a>. | ||
</p> | ||
|
||
<h6 class="fw-bold fs-5">Terminology</h6> | ||
|
||
<p class="mb-6"> | ||
The Software Observatory uses the following terminology: | ||
</p> | ||
|
||
<ul class="mt-2"> | ||
<li class="mb-2"> | ||
<span class="highlight-info">Canonical Tool/Software</span>: | ||
abstract notion of a given research software, as a computational | ||
solution that has been implemented and given an identity name by its | ||
author/s. | ||
</li> | ||
<li class="mb-2"> | ||
<span class="highlight-info">Instance of a canonical tool/software:</span> | ||
Each of the different ways in which a canonical tool is implemented, | ||
in terms of the way a user interacts with it, e.g. command-line | ||
applications, web applications, libraries; availability, e.g. | ||
desktop and/or web applications; or differences in the code that are | ||
not big enough to justify considering them as distinct tools, e.g. | ||
different versions of the same software. | ||
</li> | ||
|
||
<li class="mb-2"> | ||
<span class="highlight-info">Primary Sources</span>: sources used to | ||
discover software and build an initial collection of instances. | ||
</li> | ||
<li class="mb-2"> | ||
<span class="highlight-info">Secondary sources</span>: sources mined | ||
to further enrich the initial collection of software metadata. They | ||
are identified through cross-referencies. | ||
</li> | ||
</ul> | ||
|
||
<h6 class="fw-bold fs-5">Citation</h6> | ||
<p class="mb-6"> | ||
<span class="citation-article mt-0">FAIRsoft - A practical implementation of FAIR | ||
principles for | ||
research software </span><br /> | ||
Eva Martín del Pico, Josep Lluís Gelpí, Salvador Capella-Gutiérrez<br /> | ||
bioRxiv 2022.05.04.490563; doi:<a href="https://doi.org/10.1101/2022.05.04.490563"> | ||
https://doi.org/10.1101/2022.05.04.490563</a> | ||
</p> | ||
|
||
<h6 class="fw-bold fs-5">Terms of Use</h6> | ||
<p class="mb-6"> | ||
All data is distributed under a | ||
<a href="https://creativecommons.org/licenses/by-nd/2.0/"> | ||
CC-BY-ND</a> | ||
license. | ||
</p> | ||
</v-col> | ||
</v-row> | ||
</div> | ||
</div> | ||
</NuxtLayout> | ||
|
||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const layout = 'observatory' | ||
</script> | ||
</script> | ||
|
||
<style scoped> | ||
.title { | ||
font-size: 1.5rem !important; | ||
font-weight: 400; | ||
line-height: 2rem; | ||
letter-spacing: normal !important; | ||
} | ||
.highlight-info { | ||
color: #0b579f; | ||
font-weight: 600; | ||
} | ||
.citation-article { | ||
font-size: 1rem !important; | ||
} | ||
a { | ||
color: #0b579f; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
color: #6a98c4; | ||
} | ||
</style> |