Skip to content

Commit 5cbfd1b

Browse files
Merge pull request #1613 from research-software-directory/1606-add-bioconductor
feat: add Bioconductor as package manager type
2 parents 4f86cac + 5ecd117 commit 5cbfd1b

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

data-generation/real-data.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-FileCopyrightText: 2023 - 2024 Ewan Cahen (Netherlands eScience Center) <[email protected]>
2-
// SPDX-FileCopyrightText: 2023 - 2024 Netherlands eScience Center
1+
// SPDX-FileCopyrightText: 2023 - 2025 Ewan Cahen (Netherlands eScience Center) <[email protected]>
2+
// SPDX-FileCopyrightText: 2023 - 2025 Netherlands eScience Center
33
//
44
// SPDX-License-Identifier: Apache-2.0
55

@@ -76,6 +76,8 @@ const dois = [
7676
const packageManagerLinks = [
7777
{url: 'https://anaconda.org/conda-forge/parcels/', type: 'anaconda'},
7878
{url: 'https://anaconda.org/conda-forge/numpy/', type: 'anaconda'},
79+
{url: 'https://bioconductor.org/packages/release/bioc/html/BiocPkgTools.html', type: 'bioconductor'},
80+
{url: 'https://bioconductor.org/packages/release/bioc/html/VanillaICE.html', type: 'bioconductor'},
7981
{url: 'https://cran.r-project.org/web/packages/GGIR/index.html', type: 'cran'},
8082
{url: 'https://cran.r-project.org/web/packages/readr/index.html', type: 'cran'},
8183
{url: 'https://hub.docker.com/r/djrobstep/migra', type: 'dockerhub'},

database/005-create-relations-for-software.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ CREATE TABLE repository_url (
4747
-- in the frontend file apiPackageManager.ts
4848
CREATE TYPE package_manager_type AS ENUM (
4949
'anaconda',
50+
'bioconductor',
5051
'chocolatey',
5152
'cran',
5253
'crates',

frontend/components/software/edit/package-managers/apiPackageManager.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ export const packageManagerSettings = {
2626
hostname: ['anaconda.org'],
2727
services: ['dependents']
2828
},
29+
bioconductor: {
30+
name: 'Bioconductor',
31+
icon: '/images/bioconductor_logo_spot.svg',
32+
hostname: ['bioconductor.org', 'www.bioconductor.org'],
33+
services: []
34+
},
2935
cran: {
3036
name: 'CRAN',
3137
icon: '/images/cran-r-logo.svg',

frontend/public/images/bioconductor_logo_spot.svg

Lines changed: 2 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)