diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 14b207ef..593a28e7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -152,7 +152,7 @@ The configuration file for a subpage are located at `src/content/subpage`. The f --- title: About DataPLANT tagline: Towards democratization of plant research. -subtitle: 'Towards democratization of plant research.' +description: 'Towards democratization of plant research.' image: /src/assets/images/subpage/about/about-mainpage.svg styling: titleColor: darkblue @@ -175,8 +175,8 @@ with these fields: | Field name | description | Note | | --- | --- | --- | | `title` | The title of the subpage hero | **Mandatory** | -| `subtitle` | A subtitle for the subpage hero | **Mandatory** | -| `tagline` | A tagline for the subpage hero | **Optional** | +| `description` | A subtitle for the subpage hero | **Mandatory** | +| `tagline` | A tagline for the subpage hero, must be short | **Optional** | | `image` | The path to the image for the subpage hero | **Mandatory** | | `styling` | The styling of the subpage hero | **Mandatory** | | `content` | The content of the subpage feature section | **Mandatory** | @@ -230,7 +230,7 @@ The frontmatter for an article looks like this: ```yaml --- title: DataPLANT Task Areas -summary: Overview of the DataPLANT Task Areas +description: Overview of the DataPLANT Task Areas --- ``` @@ -239,7 +239,7 @@ with these fields: | Field name | description | Note | | --- | --- | --- | | `title` | The title of the article | **Mandatory** | -| `summary` | A summary of the article | **Mandatory** | +| `description` | A summary of the article | **Mandatory** | ### Events @@ -250,9 +250,9 @@ The frontmatter for an event looks like this: ```yaml --- title: ARCify your research project -excerpt: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' +description: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' category: Training -mode: On-site +mode: 'OfflineEventAttendanceMode' audience: [Users, DataStewards] when: start: 2024-10-24T09:00:00 @@ -276,10 +276,10 @@ location: short: HHU url: https://www.ceplas.eu/en/contact/how-to-get-there registration: - description: 'First-come-first-serve. Members of CEPLAS have priority. Everyone else is welcome, if seats are available.' - url: 'https://terminplaner6.dfn.de/en/b/551776b4130c40357ea030db0142f472-910401' - deadline: 2024-10-17 - seats: 12 + description: 'First-come-first-serve. Members of CEPLAS have priority. Everyone else is welcome, if seats are available.' + url: 'https://terminplaner6.dfn.de/en/b/551776b4130c40357ea030db0142f472-910401' + deadline: 2024-10-17 + seats: 12 external: https://en.wikipedia.org/wiki/URL#:~:text=A%20typical%20URL%20could%20have,html%20). --- ``` @@ -290,10 +290,10 @@ with these fields: | Field name | description | Note | | ------------- | --------------------------------------------------------------------- | ------------ | | `title` | The title of the event | **Mandatory** | -| `excerpt` | A brief description of the event | **Mandatory** | +| `description` | A brief description of the event | **Mandatory** | | `category` | The category of the event | one of Conference', 'Hackathon', 'Webinar', 'Training', **Mandatory** | | `when` | Event instantiation(s) | Either a single object or an array of 'when's , containing the start and end date and time of the event in ISO 8601 format. **Mandatory** | -| `mode` | The mode of the event (e.g., online, on-site) | one of 'On-site', 'Online', 'Hybrid', **Mandatory** | +| `mode` | The mode of the event (e.g., online, OfflineEventAttendanceMode) | one of 'OfflineEventAttendanceMode', 'OnlineEventAttendanceMode', 'MixedEventAttendanceMode', **Mandatory** | | `audience` | The intended audience of the event | array of 'Users', 'DataStewards', 'Developers', 'Everyone', **Mandatory** | | `location` | The location information for the event | **Mandatory** | | `image` | The path to the image associated with the event | **Optional** | @@ -387,7 +387,7 @@ The frontmatter for a news item looks like this: --- date: 2019-05-15 title: BioDATEN and DaPLUS+ at NFDI conference in Bonn -previewText: Both the not yet started Science Data Center "BioDATEN" and the DaPLUS+ initiative were present at the two days NFDI conference held in mid of May in Bonn. +description: Both the not yet started Science Data Center "BioDATEN" and the DaPLUS+ initiative were present at the two days NFDI conference held in mid of May in Bonn. --- ``` @@ -395,9 +395,9 @@ with these fields: | Field name | description | Note | | ------------- | --------------------------------------------------------------------- | ------------ | -| `date` | The date of the news item | **Mandatory** | -| `title` | The title of the news item | **Mandatory** | -| `previewText` | A brief description of the news item | **Mandatory** | +| `date` | The date of the news item | **Mandatory** | +| `title` | The title of the news item | **Mandatory** | +| `description` | A brief description of the news item | **Mandatory** | ### Publications diff --git a/src/components/DataPLANTSEO.astro b/src/components/DataPLANTSEO.astro new file mode 100644 index 00000000..1d148f00 --- /dev/null +++ b/src/components/DataPLANTSEO.astro @@ -0,0 +1,46 @@ +--- +import { SEO } from "astro-seo"; +import type { ImageMetadata } from 'astro'; +import DefaultImage from '~/assets/images/branding/ARCblue.svg'; + +interface Props { + title: string; + description?: string; + image?: ImageMetadata; + jsonLD?: string; +} + +const { + title, + description = "Democratization of plant research made easy and free for everyone!", + image = DefaultImage, + jsonLD +} = Astro.props; + +--- + + + + \ No newline at end of file diff --git a/src/components/MainPageNews.astro b/src/components/MainPageNews.astro index 160ca006..f989897c 100644 --- a/src/components/MainPageNews.astro +++ b/src/components/MainPageNews.astro @@ -18,7 +18,7 @@ const latest6: Item[] = const date = new Date(newsItem.data.date).toDateString(); return { title: newsItem.data.title, - description: newsItem.data.previewText, + description: newsItem.data.description, tagLine: date, callToAction: { href: "/news/" + newsItem.slug, diff --git a/src/components/events/EventList.tsx b/src/components/events/EventList.tsx index 1d389b18..4cf3649f 100644 --- a/src/components/events/EventList.tsx +++ b/src/components/events/EventList.tsx @@ -59,7 +59,7 @@ function EventCard (event: ReducedEvent) {

{event.data.title}

{ event.data.image && }

- { event.data.excerpt } + { event.data.description }

{ diff --git a/src/content/articles/_task-areas.md b/src/content/articles/_task-areas.md index 378a0201..36d931ef 100644 --- a/src/content/articles/_task-areas.md +++ b/src/content/articles/_task-areas.md @@ -1,6 +1,6 @@ --- title: DataPLANT Task Areas -summary: Overview of the DataPLANT Task Areas +description: Overview of the DataPLANT Task Areas --- ## Task Area 1 diff --git a/src/content/articles/arc-data-hub-concept.md b/src/content/articles/arc-data-hub-concept.md index bce03df7..7637c08f 100644 --- a/src/content/articles/arc-data-hub-concept.md +++ b/src/content/articles/arc-data-hub-concept.md @@ -1,6 +1,6 @@ --- title: The ARC Data Hub concept -summary: "" +description: "" --- The **ARC Data Hub concept** applies the software development principles of _Continuous Integration (CI)_ and _Continuous Deployment (CD)_ to the research data management (RDM) framework provided by ARCs, making ARCs first-class citizens in the cloud. diff --git a/src/content/articles/arc-data-hub-instances.md b/src/content/articles/arc-data-hub-instances.md index e493bc0b..4d04f0ac 100644 --- a/src/content/articles/arc-data-hub-instances.md +++ b/src/content/articles/arc-data-hub-instances.md @@ -1,6 +1,6 @@ --- title: ARC Data Hub Instances -summary: "" +description: "" --- ## ARC Data Hubs managed by DataPLANT diff --git a/src/content/articles/arc-development.md b/src/content/articles/arc-development.md index 07d1493a..74285760 100644 --- a/src/content/articles/arc-development.md +++ b/src/content/articles/arc-development.md @@ -1,6 +1,6 @@ --- title: Contribute to ARC development -summary: You want to contribute to our Annotated Research Context (ARC) concept or tools? Find out more. +description: You want to contribute to our Annotated Research Context (ARC) concept or tools? Find out more. --- The [**A**nnotated **R**esearch **C**ontext (ARC)](https://nfdi4plants.github.io/arc-website/) is DataPLANT's central concept for organizing and documenting research data, focal point of collaboration, data exchange, and overall FAIR Digital Object of choice. diff --git a/src/content/articles/arc-general.md b/src/content/articles/arc-general.md index 22ba8dc6..6a53029f 100644 --- a/src/content/articles/arc-general.md +++ b/src/content/articles/arc-general.md @@ -1,6 +1,6 @@ --- title: The Annotated Research Context -summary: The ARC is DataPLANT's FAIR Digital Object of choice. +description: The ARC is DataPLANT's FAIR Digital Object of choice. --- > If you want to dive deep into the ARC take a look at [arc-rdm.org](https://arc-rdm.org)! 💡 diff --git a/src/content/articles/arc-how-to-start.md b/src/content/articles/arc-how-to-start.md index 592dfbeb..e597e2eb 100644 --- a/src/content/articles/arc-how-to-start.md +++ b/src/content/articles/arc-how-to-start.md @@ -1,6 +1,6 @@ --- title: Start your own ARC -summary: You want to make your scientific data FAIR (Findable, Accessible, Interoperable, and Reusable)? Start now with our Annotated Research Context (ARC). +description: You want to make your scientific data FAIR (Findable, Accessible, Interoperable, and Reusable)? Start now with our Annotated Research Context (ARC). --- The ARC is the central framework for research data management in DataPLANT. diff --git a/src/content/articles/arc.md b/src/content/articles/arc.md index 67649fc7..b5d56bac 100644 --- a/src/content/articles/arc.md +++ b/src/content/articles/arc.md @@ -1,6 +1,6 @@ --- title: The Annotated Research Context -summary: The ARC is DataPLANT's FAIR Digital Object of choice. +description: The ARC is DataPLANT's FAIR Digital Object of choice. --- The importance of RDM systems continues to grow as scientists and institutions increasingly generate large, diverse datasets. diff --git a/src/content/articles/become-a-member.md b/src/content/articles/become-a-member.md index 4e7ad6f4..4a294cdd 100644 --- a/src/content/articles/become-a-member.md +++ b/src/content/articles/become-a-member.md @@ -1,6 +1,6 @@ --- title: Become a DataPLANT member -summary: Use our PLANTdataHUB and other DataPLANT infrastructure and services. +description: Use our PLANTdataHUB and other DataPLANT infrastructure and services. --- All DataPLANT services, tools and infrastructures are freely accessible to anyone that is interested in using them. diff --git a/src/content/articles/broker-ontology.md b/src/content/articles/broker-ontology.md index 0df2df4b..a690511a 100644 --- a/src/content/articles/broker-ontology.md +++ b/src/content/articles/broker-ontology.md @@ -1,6 +1,6 @@ --- title: Contribute to our broker ontology -summary: An intermediate ontology for plants used by DataPLANT to fill the ontology gap. We welcome every contribution! +description: An intermediate ontology for plants used by DataPLANT to fill the ontology gap. We welcome every contribution! --- Ontologies are crucial for the standardized annotation of experimental data and workflows. They offer clear definitions and relationships of terms that are relevant for a specific research domain. diff --git a/src/content/articles/collect-and-structure.md b/src/content/articles/collect-and-structure.md index 4f3f3819..96b64f9c 100644 --- a/src/content/articles/collect-and-structure.md +++ b/src/content/articles/collect-and-structure.md @@ -1,6 +1,6 @@ --- title: Create, structure and fill your ARCs -summary: Our tools ARCitect and ARCCommander simplify the creation, structuring and maintenance of ARCs. +description: Our tools ARCitect and ARCCommander simplify the creation, structuring and maintenance of ARCs. --- The ARCitect and ARCCommander are two essential tools developed by DataPLANT that assist users with the creation and management of ARCs. diff --git a/src/content/articles/community-and-partners.md b/src/content/articles/community-and-partners.md index e02c8dd4..d6e7dc95 100644 --- a/src/content/articles/community-and-partners.md +++ b/src/content/articles/community-and-partners.md @@ -1,6 +1,6 @@ --- title: Our Community & Partners -summary: Find out more about our community and partners. +description: Find out more about our community and partners. --- ![DataPLANT Community & Partners](src/assets/images/articles/community-and-partners.png) diff --git a/src/content/articles/custom-training.md b/src/content/articles/custom-training.md index 55195189..cec8cdce 100644 --- a/src/content/articles/custom-training.md +++ b/src/content/articles/custom-training.md @@ -1,6 +1,6 @@ --- title: Training made for you -summary: You want to learn how you can use the Annotated Research Context to structure your data? We offer on-site or online trainings. +description: You want to learn how you can use the Annotated Research Context to structure your data? We offer on-site or online trainings. --- In addition to offering educational material on DataPLANT’s concepts and tools online, DataPLANT’s Data Stewards offer custom support for your RDM. diff --git a/src/content/articles/data-publication-archive.md b/src/content/articles/data-publication-archive.md index 20fcefd0..b1cb7080 100644 --- a/src/content/articles/data-publication-archive.md +++ b/src/content/articles/data-publication-archive.md @@ -1,6 +1,6 @@ --- title: Our data publication tools -summary: ARChive is our platform to publish your research data via the ARCigator. +description: ARChive is our platform to publish your research data via the ARCigator. --- ARChigator is a tool for submitting ARCs hosted on DataHUB for publication in the ARChive. diff --git a/src/content/articles/discover-and-explore-arcsearch.md b/src/content/articles/discover-and-explore-arcsearch.md index 089cd95d..d5d5069a 100644 --- a/src/content/articles/discover-and-explore-arcsearch.md +++ b/src/content/articles/discover-and-explore-arcsearch.md @@ -1,6 +1,6 @@ --- title: Search ARCs for specific keywords and metadata -summary: Our service for the discovery and exploration of ARCs helps you find data sets. +description: Our service for the discovery and exploration of ARCs helps you find data sets. --- The ARCSearch is a tool for integrated search and analysis of individual ARCs and experimental metadata. diff --git a/src/content/articles/for-developers.md b/src/content/articles/for-developers.md index 7f370bfd..66a66b22 100644 --- a/src/content/articles/for-developers.md +++ b/src/content/articles/for-developers.md @@ -1,6 +1,6 @@ --- title: For Developers -summary: Find all relevant information for developers regarding contributions. +description: Find all relevant information for developers regarding contributions. --- Developers can actively contribute to the development of DataPLANT tools by collaborating on various projects hosted on our [GitHub repositories](https://github.com/nfdi4plants). Whether you're interested in improving existing features, fixing bugs, or creating new functionalities, there are multiple ways to get involved: diff --git a/src/content/articles/fundamentals-rdm.md b/src/content/articles/fundamentals-rdm.md index 940463b4..d4e899b5 100644 --- a/src/content/articles/fundamentals-rdm.md +++ b/src/content/articles/fundamentals-rdm.md @@ -1,6 +1,6 @@ --- title: Learn more about Research Data Management (RDM) -summary: Learn more about research data management and why it is important (to us). +description: Learn more about research data management and why it is important (to us). --- Whether you are new to RDM or simply want to increase your knowledge and skills, we have compiled several articles on the fundamentals of RDM, including the FAIR principles, metadata and ontologies, data sharing and publications and more. diff --git a/src/content/articles/github.md b/src/content/articles/github.md index 14c1c00b..78e7ffdf 100644 --- a/src/content/articles/github.md +++ b/src/content/articles/github.md @@ -1,6 +1,6 @@ --- title: Contribute to our GitHub repositories -summary: DataPLANT's work is openly accesible on GitHub. Contributions to our repositories are welcome. +description: DataPLANT's work is openly accesible on GitHub. Contributions to our repositories are welcome. --- DataPLANT's work is openly accessible on GitHub. diff --git a/src/content/articles/governance.md b/src/content/articles/governance.md index 22082668..2e216ccd 100644 --- a/src/content/articles/governance.md +++ b/src/content/articles/governance.md @@ -1,6 +1,6 @@ --- title: DataPLANT Governance -summary: "" +description: "" --- The DataPLANT consortium has developed a participatory model where members play a key role in broadening its diversity. In its daily operation, DataPLANT does not differentiate between the initial community and its significantly broadened user base. diff --git a/src/content/articles/harmonizing-templates.md b/src/content/articles/harmonizing-templates.md index 70775530..667545e5 100644 --- a/src/content/articles/harmonizing-templates.md +++ b/src/content/articles/harmonizing-templates.md @@ -1,6 +1,6 @@ --- title: Homogenization of metadata to simplify the RDM landscape -summary: Our harmonization tools enable you to annotate your data with descriptive metadata and apply consistent terminologies. +description: Our harmonization tools enable you to annotate your data with descriptive metadata and apply consistent terminologies. --- The annotation of data with metadata is essential for well-maintained research data according to FAIR principles. Metadata is particularly important for describing how your data was generated. diff --git a/src/content/articles/helpdesk.md b/src/content/articles/helpdesk.md index 4e3cf8a1..f9746332 100644 --- a/src/content/articles/helpdesk.md +++ b/src/content/articles/helpdesk.md @@ -1,6 +1,6 @@ --- title: Contact DataPLANT’s Helpdesk -summary: Looking for help on research data management or DataPLANT services and infrastructure? Get in touch with us! +description: Looking for help on research data management or DataPLANT services and infrastructure? Get in touch with us! --- Our helpdesk is your primary point of contact for any questions or inquiries. diff --git a/src/content/articles/knowledge-base.md b/src/content/articles/knowledge-base.md index 378a0201..36d931ef 100644 --- a/src/content/articles/knowledge-base.md +++ b/src/content/articles/knowledge-base.md @@ -1,6 +1,6 @@ --- title: DataPLANT Task Areas -summary: Overview of the DataPLANT Task Areas +description: Overview of the DataPLANT Task Areas --- ## Task Area 1 diff --git a/src/content/articles/manuals.md b/src/content/articles/manuals.md index 456f81d2..c73e08db 100644 --- a/src/content/articles/manuals.md +++ b/src/content/articles/manuals.md @@ -1,6 +1,6 @@ --- title: Tools and services manuals -summary: Browse our guides to learn more about DataPLANTs tools and services. +description: Browse our guides to learn more about DataPLANTs tools and services. --- DataPLANT offers several tools to facilitate RDM. diff --git a/src/content/articles/nfdi.md b/src/content/articles/nfdi.md index e3ac05bb..8b61a687 100644 --- a/src/content/articles/nfdi.md +++ b/src/content/articles/nfdi.md @@ -1,6 +1,6 @@ --- title: DataPLANT is part of the NFDI -summary: DataPLANT is a consortium under the umbrella of the National Research Data Infrastructure (NFDI) dedicated to plant science +description: DataPLANT is a consortium under the umbrella of the National Research Data Infrastructure (NFDI) dedicated to plant science --- NFDI (Nationale Forschungsdateninfrastruktur) organises a nationwide collaborative network for the joint use of data and software across scientific domains. diff --git a/src/content/articles/open-educational-resources.md b/src/content/articles/open-educational-resources.md index cd5b6abc..92735387 100644 --- a/src/content/articles/open-educational-resources.md +++ b/src/content/articles/open-educational-resources.md @@ -1,6 +1,6 @@ --- title: Browse our open educational resources -summary: "Videos, slides, GitHub repositories and more: Explore our free self-learning materials!" +description: "Videos, slides, GitHub repositories and more: Explore our free self-learning materials!" --- Whether you already participated in a personal DataPLANT training or not, you can become more familiar with DataPLANT’s tools and RDM concept by browsing our open educational resources. diff --git a/src/content/articles/our-mission.md b/src/content/articles/our-mission.md index 0168dd5b..bd257102 100644 --- a/src/content/articles/our-mission.md +++ b/src/content/articles/our-mission.md @@ -1,6 +1,6 @@ --- title: Our mission -summary: Driving the digital change in plant science. +description: Driving the digital change in plant science. --- In order to drive the digital change, **DataPLANT's primary mission** is to foster active community participation and engagement by providing comprehensive support that streamlines Research Data Management (RDM) and ensures compliance with the FAIR principles. It aims to seamlessly connect research activities with data management processes, thereby equipping researchers to handle RDM effectively without drawing a distinction between the two. This goal necessitates a sociotechnical participation framework that aligns DataPLANT’s objectives with the broader objectives of the NFDI, thereby facilitating digital transformation across and within research communities. Achieving these outcomes demands the integration of diverse expertise. DataPLANT's mission is to empower the community to "employ, contribute, govern" through a strategy supported by technical aims to "ensure, develop, interoperate" and integrative goals to "deploy, network, exchange". diff --git a/src/content/articles/planning-dataplan.md b/src/content/articles/planning-dataplan.md index 4e4c4d1b..37cb6e75 100644 --- a/src/content/articles/planning-dataplan.md +++ b/src/content/articles/planning-dataplan.md @@ -1,6 +1,6 @@ --- title: Our Data Management Plan Generator -summary: Our DataPLAN tool is designed to assist you in quickly generating Data Management Plans (DMPs) that can be used for a variety of purposes. +description: Our DataPLAN tool is designed to assist you in quickly generating Data Management Plans (DMPs) that can be used for a variety of purposes. --- diff --git a/src/content/articles/rdm-concept.md b/src/content/articles/rdm-concept.md index 479db516..bd605e1e 100644 --- a/src/content/articles/rdm-concept.md +++ b/src/content/articles/rdm-concept.md @@ -1,6 +1,6 @@ --- title: Our Research Data Management concept -summary: "" +description: "" --- DataPLANT’s Research Data Management (RDM) concept focusses on FAIR compliance, data and service interoperability, community participation, knowledge transfer, and long-term sustainability. diff --git a/src/content/articles/style-guide.md b/src/content/articles/style-guide.md index 94099e46..f8babf97 100644 --- a/src/content/articles/style-guide.md +++ b/src/content/articles/style-guide.md @@ -1,4 +1,4 @@ --- title: DataPLANT Styleguide -summary: "" +description: "" --- diff --git a/src/content/articles/task-areas.md b/src/content/articles/task-areas.md index db641656..fc2c6fe0 100644 --- a/src/content/articles/task-areas.md +++ b/src/content/articles/task-areas.md @@ -1,6 +1,6 @@ --- title: DataPLANT Task Areas -summary: Overview of the DataPLANT Task Areas +description: Overview of the DataPLANT Task Areas --- ## Task Area I - Driving Standardization diff --git a/src/content/articles/teaching-materials.md b/src/content/articles/teaching-materials.md index 7278b2f0..cfd66f60 100644 --- a/src/content/articles/teaching-materials.md +++ b/src/content/articles/teaching-materials.md @@ -1,6 +1,6 @@ --- title: DataPLANT’s training and teaching materials -summary: "Data management, annotation or publication: Have a look at our trainings and teaching materials." +description: "Data management, annotation or publication: Have a look at our trainings and teaching materials." --- We offer frequent trainings by our Data Stewards to bring different scientific groups on board with DataPLANT’s concepts and tools as well as keep them up to date. diff --git a/src/content/articles/template-repo.md b/src/content/articles/template-repo.md index 4e3fc225..5221d362 100644 --- a/src/content/articles/template-repo.md +++ b/src/content/articles/template-repo.md @@ -1,6 +1,6 @@ --- title: Contribute to our templates -summary: Our annotation tool Swate simplifies adding standardized metadata for your experimental workflows. You would like to contribute a template? +description: Our annotation tool Swate simplifies adding standardized metadata for your experimental workflows. You would like to contribute a template? --- Our spreadsheet-based tool Swate helps you to create annotation tables by adding different building blocks to represent your experimental process, while following the ISA schema and using ontology terms. diff --git a/src/content/articles/testimonials.md b/src/content/articles/testimonials.md index d9df5775..3acd5b51 100644 --- a/src/content/articles/testimonials.md +++ b/src/content/articles/testimonials.md @@ -1,6 +1,6 @@ --- title: What others say about DataPLANT -summary: What our community and partners say about us. +description: What our community and partners say about us. --- ## Partner: Cluster of Excellence on Plant Sciences (CEPLAS) diff --git a/src/content/articles/training-knowledgebase.md b/src/content/articles/training-knowledgebase.md index 33457e1a..948226c7 100644 --- a/src/content/articles/training-knowledgebase.md +++ b/src/content/articles/training-knowledgebase.md @@ -1,6 +1,6 @@ --- title: Our teaching and training offers -summary: "" +description: "" --- DataPLANT’s teaching and training services ensure smooth adoption and effective use of its tools in the research community. diff --git a/src/content/articles/workflow-engine-galaxy.md b/src/content/articles/workflow-engine-galaxy.md index 6c5e1015..2b8b3a23 100644 --- a/src/content/articles/workflow-engine-galaxy.md +++ b/src/content/articles/workflow-engine-galaxy.md @@ -1,6 +1,6 @@ --- title: Galaxy Workflow Engine -summary: Analyze your data stored in ARCs using the Galaxy Workflow Platform. +description: Analyze your data stored in ARCs using the Galaxy Workflow Platform. --- The Galaxy workflow system allows you to analyze your data from you ARCs by executing a series of tools and dataset operations in a defined sequence as a batch process. diff --git a/src/content/config.ts b/src/content/config.ts index 19d061f6..d6fb322b 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -6,7 +6,7 @@ const newsCollection = defineCollection({ schema: ({ image }) => z.object({ title: z.string(), date: z.date(), - previewText: z.string(), + description: z.string(), image: image().optional(), }) }); @@ -15,9 +15,9 @@ const eventsCollection = defineCollection({ type: 'content', schema: ({ image }) => z.object({ title: z.string(), - excerpt: z.string().max(200), + description: z.string().max(200), category: z.enum(['Conference', 'Hackathon', 'Webinar', 'Training', 'Meeting']), // There might be more - mode: z.enum(['On-site', 'Online', 'Hybrid']), // There might be more + mode: z.enum(['OfflineEventAttendanceMode', 'OnlineEventAttendanceMode', 'MixedEventAttendanceMode']), // There might be more audience: z.enum(['Users', 'DataStewards', 'Developers']).array(), // There might be more when: z.object({ start: z.date(), @@ -53,8 +53,8 @@ const subpageHeroCollection = defineCollection({ type: 'content', schema: ({ image }) => z.object({ title: z.string(), - subtitle: z.string(), - tagline: z.string().optional(), + description: z.string(), + tagline: z.string().max(50).optional(), image: image(), content: z.array(reference('subpageContent')), styling: z.object({ @@ -101,7 +101,7 @@ const articleCollection = defineCollection({ type: 'content', schema: () => z.object({ title: z.string(), - summary: z.string(), + description: z.string(), tags: z.array(z.string()).optional(), }) }); diff --git a/src/content/events/2021-09-06_first-arc-hackathon.md b/src/content/events/2021-09-06_first-arc-hackathon.md index a66e29b7..6ff1d11b 100644 --- a/src/content/events/2021-09-06_first-arc-hackathon.md +++ b/src/content/events/2021-09-06_first-arc-hackathon.md @@ -1,12 +1,12 @@ --- title: First ARC Hackathon category: Conference -excerpt: 'Hackathon to improve DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services.' +description: 'Hackathon to improve DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services.' when: start: 2021-09-06T12:00:00 end: 2021-09-08T12:16:00 audience: ['Users', 'DataStewards', 'Developers'] -mode: On-site +mode: OfflineEventAttendanceMode location: name: Villa Denis Conference Center address: Diemerstein 9, 67468 Frankenstein diff --git a/src/content/events/2021-12-16_second-arc-hackathon.md b/src/content/events/2021-12-16_second-arc-hackathon.md index e789f35b..4145850e 100644 --- a/src/content/events/2021-12-16_second-arc-hackathon.md +++ b/src/content/events/2021-12-16_second-arc-hackathon.md @@ -1,12 +1,12 @@ --- title: Second ARC Hackathon category: Conference -excerpt: 'Hackathon to improve DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services.' +description: 'Hackathon to improve DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services.' when: start: 2021-12-14T13:00:00 end: 2021-12-16T14:00:00 audience: ['Users', 'DataStewards', 'Developers'] -mode: Online +mode: OnlineEventAttendanceMode organizer: name: DataPLANT location: diff --git a/src/content/events/2022-10-07_third-arc-hackathon.md b/src/content/events/2022-10-07_third-arc-hackathon.md index 7b577ff3..e58aab99 100644 --- a/src/content/events/2022-10-07_third-arc-hackathon.md +++ b/src/content/events/2022-10-07_third-arc-hackathon.md @@ -1,12 +1,12 @@ --- title: Third ARC Hackathon category: Conference -excerpt: 'Hackathon to improve DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services.' +description: 'Hackathon to improve DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services.' when: start: 2022-10-05T13:00:00 end: 2022-10-07T14:00:00 audience: ['Users', 'DataStewards', 'Developers'] -mode: On-site +mode: OfflineEventAttendanceMode location: name: Forschungszentrum Jülich GmbH address: Bioinformatik (IBG-4), Wilhelm-Johnen-Straße, 52428 Jülich diff --git a/src/content/events/2023-05-09_CEPLAS-StartYourARC-Series.md b/src/content/events/2023-05-09_CEPLAS-StartYourARC-Series.md index 77a54a60..bb80ade5 100644 --- a/src/content/events/2023-05-09_CEPLAS-StartYourARC-Series.md +++ b/src/content/events/2023-05-09_CEPLAS-StartYourARC-Series.md @@ -1,7 +1,7 @@ --- title: CEPLAS Start Your ARC Workshop Series category: Training -excerpt: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' +description: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' when: - start: 2023-05-09T10:00:00 @@ -12,7 +12,7 @@ when: - start: 2023-06-14T10:00:00 end: 2023-06-14T11:30:00 -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] location: name: HHU, ZSL 22.07, Room U1.025 diff --git a/src/content/events/2023-07-17_rptu-summer-school-on-rdm.md b/src/content/events/2023-07-17_rptu-summer-school-on-rdm.md index 2767c9d2..2b2724dc 100644 --- a/src/content/events/2023-07-17_rptu-summer-school-on-rdm.md +++ b/src/content/events/2023-07-17_rptu-summer-school-on-rdm.md @@ -1,8 +1,8 @@ --- title: RPTU Summer School on Fundamentals of Research Data Management -mode: On-site +mode: OfflineEventAttendanceMode category: Training -excerpt: 'The RPTU Summer School on Research Data Management offers hands-on training for PhD students, PostDocs, and PIs involved in data-driven research.' +description: 'The RPTU Summer School on Research Data Management offers hands-on training for PhD students, PostDocs, and PIs involved in data-driven research.' when: start: 2023-06-17T09:00:00 end: 2023-06-21T16:00:00 @@ -38,7 +38,7 @@ and will include a mix of lectures, workshops, and hands-on exercises. You can e ## Contact We will send you further information in early June. -The summer school is an on-site, in presence event held at the [RPTU](https://rptu.de/). (In well justified exceptional cases, we will facilitate remote participation.) +The summer school is an OfflineEventAttendanceMode, in presence event held at the [RPTU](https://rptu.de/). (In well justified exceptional cases, we will facilitate remote participation.) We hope you will join us in improving your knowledge in research data management, and look forward to welcoming you to our summer school! Please direct any questions to us via diff --git a/src/content/events/2023-08-17_ARC-Club_HHU.md b/src/content/events/2023-08-17_ARC-Club_HHU.md index 086aea16..9a4a6579 100644 --- a/src/content/events/2023-08-17_ARC-Club_HHU.md +++ b/src/content/events/2023-08-17_ARC-Club_HHU.md @@ -1,8 +1,8 @@ --- title: "ARC Club HHU" -excerpt: "a two-day adventure to prepare your lab for the ARC universe" +description: "a two-day adventure to prepare your lab for the ARC universe" category: Training -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] when: start: 2023-08-17T09:00:00 diff --git a/src/content/events/2023-09-MibiNet-CEPLAS-StartYourARC.md b/src/content/events/2023-09-MibiNet-CEPLAS-StartYourARC.md index 55d6bd13..ebf13b46 100644 --- a/src/content/events/2023-09-MibiNet-CEPLAS-StartYourARC.md +++ b/src/content/events/2023-09-MibiNet-CEPLAS-StartYourARC.md @@ -2,7 +2,7 @@ title: MibiNet/CEPLAS Start Your ARC Workshop date: 2023-09-20 category: Training -excerpt: 'This two-session workshop series demonstrates the ARC concept and introduces how to build a first ARC for your own research project and annotate the data in your ARC.' +description: 'This two-session workshop series demonstrates the ARC concept and introduces how to build a first ARC for your own research project and annotate the data in your ARC.' when: - start: 2024-09-21T09:30:00 @@ -10,7 +10,7 @@ when: - start: 2024-09-28T09:30:00 end: 2024-09-28T15:30:00 -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] location: name: HHU, ZSL 22.07, Room U1.021 diff --git a/src/content/events/2023-10-CSCS-CEPLAS-StartYourARC.md b/src/content/events/2023-10-CSCS-CEPLAS-StartYourARC.md index 0118835b..e75cc6c3 100644 --- a/src/content/events/2023-10-CSCS-CEPLAS-StartYourARC.md +++ b/src/content/events/2023-10-CSCS-CEPLAS-StartYourARC.md @@ -1,8 +1,8 @@ --- title: CSCS Start Your ARC Workshop -excerpt: "This two-day workshop demonstrates the concept of ARC and introduces how to build a first ARC for your own research project." +description: "This two-day workshop demonstrates the concept of ARC and introduces how to build a first ARC for your own research project." category: Webinar -mode: Online +mode: OnlineEventAttendanceMode audience: [Users] when: - diff --git a/src/content/events/2023-11-15_CEPLAS-ARC-Clubs.md b/src/content/events/2023-11-15_CEPLAS-ARC-Clubs.md index aae1886f..50164768 100644 --- a/src/content/events/2023-11-15_CEPLAS-ARC-Clubs.md +++ b/src/content/events/2023-11-15_CEPLAS-ARC-Clubs.md @@ -1,8 +1,8 @@ --- title: "CEPLAS ARC Clubs" -excerpt: "a two-day adventure to prepare your lab for the ARC universe" +description: "a two-day adventure to prepare your lab for the ARC universe" category: Training -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] when: start: 2023-11-15T09:00:00 diff --git a/src/content/events/2024-04-03_CEPLAS-ARC-Trainings.md b/src/content/events/2024-04-03_CEPLAS-ARC-Trainings.md index 1a4b4c6a..0df9fa7b 100644 --- a/src/content/events/2024-04-03_CEPLAS-ARC-Trainings.md +++ b/src/content/events/2024-04-03_CEPLAS-ARC-Trainings.md @@ -1,7 +1,7 @@ --- title: CEPLAS ARC Training Series category: Training -excerpt: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' +description: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' when: - start: 2024-04-03T09:00:00 @@ -44,7 +44,7 @@ when: - Dominik Brilhaus (CEPLAS Data) - Eik Dahms (TRR341) - Dan Wang (MibiNet, TRR341) -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] location: name: HHU diff --git a/src/content/events/2024-04-08_boppard-arc-symposium.md b/src/content/events/2024-04-08_boppard-arc-symposium.md index 1d8edc73..e5c497c9 100644 --- a/src/content/events/2024-04-08_boppard-arc-symposium.md +++ b/src/content/events/2024-04-08_boppard-arc-symposium.md @@ -1,13 +1,13 @@ --- title: Hands-On Symposium on ARC communication and interoperability category: Conference -excerpt: 'The symposium at Bellevue-Rheinhotel Boppard (April 8-10, 2024) features ARC ecosystem talks and hands-on work.' +description: 'The symposium at Bellevue-Rheinhotel Boppard (April 8-10, 2024) features ARC ecosystem talks and hands-on work.' when: start: 2024-04-08T12:00:00 end: 2024-04-10T12:16:00 image: ~/assets/images/events/01-a-bellevue-rheinhotel-frontansicht-2015.webp audience: ['Users', 'DataStewards', 'Developers'] -mode: On-site +mode: OfflineEventAttendanceMode location: name: Bellevue Rheinhotel Boppard address: Bellevue Rheinhotel Boppard diff --git a/src/content/events/2024-04-11_MibiNet-CEPLAS-ARC-Trainings.md b/src/content/events/2024-04-11_MibiNet-CEPLAS-ARC-Trainings.md index b8631aab..90a2c3b8 100644 --- a/src/content/events/2024-04-11_MibiNet-CEPLAS-ARC-Trainings.md +++ b/src/content/events/2024-04-11_MibiNet-CEPLAS-ARC-Trainings.md @@ -1,7 +1,7 @@ --- title: MibiNet CEPLAS – DataPLANT Tool Demonstration category: Training -excerpt: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' +description: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' when: - start: 2024-04-11T09:00:00 @@ -23,7 +23,7 @@ when: location: name: HHU, 26.24.U1.018 address: HHU, 26.24.U1.018 -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] tutors: - Sabrina Zander (MibiNet) diff --git a/src/content/events/2024-06-19_GoPMF_Workshop.md b/src/content/events/2024-06-19_GoPMF_Workshop.md index 8723be8d..aa61cb87 100644 --- a/src/content/events/2024-06-19_GoPMF_Workshop.md +++ b/src/content/events/2024-06-19_GoPMF_Workshop.md @@ -1,11 +1,11 @@ --- title: GoPMF - DataPLANT workshop category: Training -excerpt: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' +description: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' when: start: 2024-06-19T10:00:00 end: 2024-06-20T13:00:00 -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users] location: name: Universität Münster diff --git a/src/content/events/2024-09-17_open-science-festival.md b/src/content/events/2024-09-17_open-science-festival.md index cb58de5f..e827f121 100644 --- a/src/content/events/2024-09-17_open-science-festival.md +++ b/src/content/events/2024-09-17_open-science-festival.md @@ -1,8 +1,8 @@ --- title: Open Science Festival -mode: On-site +mode: OfflineEventAttendanceMode category: Conference -excerpt: 'Join the Open Science Festival in Mainz for talks, workshops, and networking. DataPLANT will be at the NFDI booth. Register now!' +description: 'Join the Open Science Festival in Mainz for talks, workshops, and networking. DataPLANT will be at the NFDI booth. Register now!' when: start: 2024-09-17 end: 2024-09-18 diff --git a/src/content/events/2024-10-11_arc-user-support.md b/src/content/events/2024-10-11_arc-user-support.md index 0fa2325f..1f450250 100644 --- a/src/content/events/2024-10-11_arc-user-support.md +++ b/src/content/events/2024-10-11_arc-user-support.md @@ -2,7 +2,7 @@ title: ARC User Meeting category: Webinar audience: [Users] -excerpt: 'With this monthly ARC user meeting we try to regularly answer questions, demonstrate tools and services or discuss data management issues.' +description: 'With this monthly ARC user meeting we try to regularly answer questions, demonstrate tools and services or discuss data management issues.' when: - start: 2024-10-11T13:00:00 @@ -16,7 +16,7 @@ when: - start: 2024-01-10T13:00:00 end: 2024-01-10T14:00:00 -mode: Online +mode: OnlineEventAttendanceMode tutors: - DataStewards of DataPLANT, CEPLAS, MibiNet, TRR341 location: diff --git a/src/content/events/2024-10-16_DataSteward-Circle.md b/src/content/events/2024-10-16_DataSteward-Circle.md index f1968014..0a898168 100644 --- a/src/content/events/2024-10-16_DataSteward-Circle.md +++ b/src/content/events/2024-10-16_DataSteward-Circle.md @@ -3,7 +3,7 @@ slug: datasteward-circle title: DataSteward Circle category: Meeting audience: [DataStewards] -excerpt: 'Exchange best practices about creating ARCs. Updates on tools and services as well as annotation support, that will make your work as Data Stewards easier.' +description: 'Exchange best practices about creating ARCs. Updates on tools and services as well as annotation support, that will make your work as Data Stewards easier.' when: - start: 2024-10-16T09:00:00 @@ -17,7 +17,7 @@ when: - start: 2024-11-27T09:00:00 end: 2024-11-27T10:00:00 -mode: Online +mode: OnlineEventAttendanceMode image: ~/assets/images/DataPLANT_logo_square_bg_darkblue.svg location: name: Microsoft Teams diff --git a/src/content/events/2024-10-24_ceplas-arc-workshop.md b/src/content/events/2024-10-24_ceplas-arc-workshop.md index 7728d50e..0580ffcc 100644 --- a/src/content/events/2024-10-24_ceplas-arc-workshop.md +++ b/src/content/events/2024-10-24_ceplas-arc-workshop.md @@ -1,11 +1,11 @@ --- title: ARCify your research project category: Training -excerpt: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' +description: 'Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata.' when: start: 2024-10-24T09:00:00 end: 2024-10-24T12:00:00 -mode: On-site +mode: OfflineEventAttendanceMode audience: [Users, DataStewards] location: name: HHU diff --git a/src/content/events/2024-11-10_ceplas-module.md b/src/content/events/2024-11-10_ceplas-module.md index c5e0098c..27464197 100644 --- a/src/content/events/2024-11-10_ceplas-module.md +++ b/src/content/events/2024-11-10_ceplas-module.md @@ -1,12 +1,12 @@ --- title: CEPLAS – Good Data Management Practices category: Training -excerpt: Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata. This workshop is offered as part of the CEPLAS PhD module 2024. +description: Learn how to move your datasets into ARCs, share them via the DataHUB, and annotate them with metadata. This workshop is offered as part of the CEPLAS PhD module 2024. when: start: 2024-11-10T09:30:00 end: 2024-11-11T16:00:00 -mode: On-site +mode: OfflineEventAttendanceMode # image: ~/assets/images/events/ceplas-ARCs.drawio.png tutors: - Vittorio Tracanna (CEPLAS) diff --git a/src/content/news/2019-05-15-biodaten-and-daplas-at-nfdi-conference-in-bonn.md b/src/content/news/2019-05-15-biodaten-and-daplas-at-nfdi-conference-in-bonn.md index 8e2d08d8..4aeeff10 100644 --- a/src/content/news/2019-05-15-biodaten-and-daplas-at-nfdi-conference-in-bonn.md +++ b/src/content/news/2019-05-15-biodaten-and-daplas-at-nfdi-conference-in-bonn.md @@ -1,7 +1,7 @@ --- date: 2019-05-15 title: BioDATEN and DaPLUS+ at NFDI conference in Bonn -previewText: Both the not yet started Science Data Center "BioDATEN" and the DaPLUS+ initiative were present at the two days NFDI conference held in mid of May in Bonn. +description: Both the not yet started Science Data Center "BioDATEN" and the DaPLUS+ initiative were present at the two days NFDI conference held in mid of May in Bonn. --- Both the not yet started Science Data Center "BioDATEN" and the DaPLUS+ initiative were present at the two days NFDI conference held in mid of May in Bonn. The Science Data Center BioDATEN - Bioinformatics DATa ENvironment is a community effort in standardization, services and sustainable research data management. It plans to combine the tools and services provided in frameworks like Galaxy with efforts towards standardization and research data management. DaPLUS+ was formed by colleagues in fundamental plant research from Technical University in Kaiserlautern and Juelich research center. diff --git a/src/content/news/2019-05-30-the-berlin-memorandum-on-cros-cutting-topics.md b/src/content/news/2019-05-30-the-berlin-memorandum-on-cros-cutting-topics.md index a89a1743..eeb82b27 100644 --- a/src/content/news/2019-05-30-the-berlin-memorandum-on-cros-cutting-topics.md +++ b/src/content/news/2019-05-30-the-berlin-memorandum-on-cros-cutting-topics.md @@ -1,7 +1,7 @@ --- date: 2019-05-30 title: The Berlin Memorandum on cross-cutting topics -previewText: A colleague from Kaiserslautern joined the event co-organized by other NFDI consortia in Berlin. +description: A colleague from Kaiserslautern joined the event co-organized by other NFDI consortia in Berlin. --- A colleague from Kaiserslautern joined the event co-organized by other NFDI consortia in Berlin. diff --git a/src/content/news/2019-07-05-forming-the-consortium-in-the-nfdi-process-daplus-and-biodaten-science-data-center.md b/src/content/news/2019-07-05-forming-the-consortium-in-the-nfdi-process-daplus-and-biodaten-science-data-center.md index 11da19eb..0ceac948 100644 --- a/src/content/news/2019-07-05-forming-the-consortium-in-the-nfdi-process-daplus-and-biodaten-science-data-center.md +++ b/src/content/news/2019-07-05-forming-the-consortium-in-the-nfdi-process-daplus-and-biodaten-science-data-center.md @@ -1,7 +1,7 @@ --- date: 2019-07-05 title: "Forming the consortium in the NFDI process: DaPLUS+ and BioDATEN Science Data Center" -previewText: Together with colleagues from Tübingen, Konstanz, Freiburg, Heidelberg, ... parts of the BioDATEN community joined forces with the DaPLUS+ consortium from Kaiserlautern, Jülich and Düsseldorf to paticipate in the process to create a National Research Data Infrastructure. The newly formed consortium centers around plant data in bioinformatics and handed in a binding "Letter of Interest. In modern hypothesis-driven science, researchers increasingly rely on effective research data management services and ... +description: Together with colleagues from Tübingen, Konstanz, Freiburg, Heidelberg, ... parts of the BioDATEN community joined forces with the DaPLUS+ consortium from Kaiserlautern, Jülich and Düsseldorf to paticipate in the process to create a National Research Data Infrastructure. The newly formed consortium centers around plant data in bioinformatics and handed in a binding "Letter of Interest. In modern hypothesis-driven science, researchers increasingly rely on effective research data management services and ... --- __Together with colleagues from Tübingen, Konstanz, Freiburg, Heidelberg, ... parts of the BioDATEN community joined forces with the DaPLUS+ consortium from Kaiserlautern, Jülich and Düsseldorf to paticipate in the process to create a National Research Data Infrastructure. The newly formed consortium centers around plant data in bioinformatics and handed in a binding "Letter of Interest.__ diff --git a/src/content/news/2019-08-30-participation-in-the-nfdi-governance-workshop-in-bonn.md b/src/content/news/2019-08-30-participation-in-the-nfdi-governance-workshop-in-bonn.md index 773a32f5..9532efca 100644 --- a/src/content/news/2019-08-30-participation-in-the-nfdi-governance-workshop-in-bonn.md +++ b/src/content/news/2019-08-30-participation-in-the-nfdi-governance-workshop-in-bonn.md @@ -1,7 +1,7 @@ --- date: 2019-08-30 title: Participation in the NFDI governance workshop in Bonn -previewText: A colleague from Freiburg took part in the NFDI Governance workshop hosted by the DFG in Bonn. The objectives of the workshop were the discussion of possible legal forms for the NFDI structure and giving an overview of the steps up to the application date of 15th October 2019. In the morning there was a presentation by a consulting law firm, which was mandated by the DFG to examine possible paths of governance and legal models. In the afternoon, questions were discussed under moderation by DFG ... +description: A colleague from Freiburg took part in the NFDI Governance workshop hosted by the DFG in Bonn. The objectives of the workshop were the discussion of possible legal forms for the NFDI structure and giving an overview of the steps up to the application date of 15th October 2019. In the morning there was a presentation by a consulting law firm, which was mandated by the DFG to examine possible paths of governance and legal models. In the afternoon, questions were discussed under moderation by DFG ... --- A colleague from Freiburg took part in the NFDI Governance workshop hosted by the DFG in Bonn. The objectives of the workshop were the discussion of possible legal forms for the NFDI structure and giving an overview of the steps up to the application date of 15th October 2019. In the morning there was a presentation by a consulting law firm, which was mandated by the DFG to examine possible paths of governance and legal models. In the afternoon, questions were discussed under moderation by DFG representatives, which should be taken into account for the proposals. Fundamental questions arose, which were taken up by the DFG. diff --git a/src/content/news/2019-10-18-next-step-in-the-nfdi-building-process-grant-application-submitted.md b/src/content/news/2019-10-18-next-step-in-the-nfdi-building-process-grant-application-submitted.md index 88e353ff..17507780 100644 --- a/src/content/news/2019-10-18-next-step-in-the-nfdi-building-process-grant-application-submitted.md +++ b/src/content/news/2019-10-18-next-step-in-the-nfdi-building-process-grant-application-submitted.md @@ -1,7 +1,7 @@ --- date: 2019-10-18 title: "Next step in the NFDI building process: Grant application submitted" -previewText: On Tuesday the 15th October the DataPLANT NFDI consortium submitted it's proposal to the DFG. The consortium in Fundamental Plant Research consists of roughly 30 participants including universities and large research institutions distributed over the country. A significant proportion of the participants originate from Baden-Württemberg and the BioDATEN Science Data Center. Further co-applicants are the Technical University of Kaiserslautern and the Forschungszentrum Jülich. The central aim of ... +description: On Tuesday the 15th October the DataPLANT NFDI consortium submitted it's proposal to the DFG. The consortium in Fundamental Plant Research consists of roughly 30 participants including universities and large research institutions distributed over the country. A significant proportion of the participants originate from Baden-Württemberg and the BioDATEN Science Data Center. Further co-applicants are the Technical University of Kaiserslautern and the Forschungszentrum Jülich. The central aim of ... --- On Tuesday the 15th October the DataPLANT NFDI consortium submitted it's proposal to the DFG. The consortium in Fundamental Plant Research consists of roughly 30 participants including universities and large research institutions distributed over the country. A significant proportion of the participants originate from Baden-Württemberg and the BioDATEN Science Data Center. Further co-applicants are the Technical University of Kaiserslautern and the Forschungszentrum Jülich. diff --git a/src/content/news/2019-12-09-dataplant-nfdi-application-defended-in-bonn.md b/src/content/news/2019-12-09-dataplant-nfdi-application-defended-in-bonn.md index 910e01cf..5b24ef8a 100644 --- a/src/content/news/2019-12-09-dataplant-nfdi-application-defended-in-bonn.md +++ b/src/content/news/2019-12-09-dataplant-nfdi-application-defended-in-bonn.md @@ -1,7 +1,7 @@ --- date: 2019-12-09 title: DataPLANT NFDI application defended in Bonn -previewText: DataPLANT was initiated by BioDATEN in Baden-Wuerttemberg and DaPLUS of Kaiserslautern and Jülich to create a NFDI consortium on fundamental plant research. It took part in the next round together with other consortia like NFDI4AGRI, NFDI4Earth and NFDI4BioDiversity. On the 2nd and 3rd of December 2019 the DataPLANT consortium has been in Bonn and presented and defended the NFDI application. The perceived feedback on the first day was quite positive. On the second day, we received in a ... +description: DataPLANT was initiated by BioDATEN in Baden-Wuerttemberg and DaPLUS of Kaiserslautern and Jülich to create a NFDI consortium on fundamental plant research. It took part in the next round together with other consortia like NFDI4AGRI, NFDI4Earth and NFDI4BioDiversity. On the 2nd and 3rd of December 2019 the DataPLANT consortium has been in Bonn and presented and defended the NFDI application. The perceived feedback on the first day was quite positive. On the second day, we received in a ... --- DataPLANT was initiated by BioDATEN in Baden-Wuerttemberg and DaPLUS of Kaiserslautern and Jülich to create a NFDI consortium on fundamental plant research. It took part in the next round together with other consortia like NFDI4AGRI, NFDI4Earth and NFDI4BioDiversity. diff --git a/src/content/news/2020-01-13-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md b/src/content/news/2020-01-13-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md index 608a7812..de6a35d0 100644 --- a/src/content/news/2020-01-13-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md +++ b/src/content/news/2020-01-13-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md @@ -1,7 +1,7 @@ --- date: 2020-01-13 title: DataPLANT receives positive feedback from the DFG, but still work ahead -previewText: BioDATEN and DAplus+ are jointly involved in the nationwide NFDI process with DataPLANT Consortium (in the area of Fundamental Plant Research). End of January the review of the DFG assessment of the of the application and the oral presentation in Bonn (Link to the older message) in early December arrived. The reviewers gave a widely positive feedback, from which we deduce that DataPLANT is still in the group for consideration of funding. We would like to thank our collaborators from the Galaxy ... +description: BioDATEN and DAplus+ are jointly involved in the nationwide NFDI process with DataPLANT Consortium (in the area of Fundamental Plant Research). End of January the review of the DFG assessment of the of the application and the oral presentation in Bonn (Link to the older message) in early December arrived. The reviewers gave a widely positive feedback, from which we deduce that DataPLANT is still in the group for consideration of funding. We would like to thank our collaborators from the Galaxy ... --- BioDATEN and DAplus+ are jointly involved in the nationwide NFDI process with DataPLANT Consortium (in the area of Fundamental Plant Research). End of January the review of the DFG assessment of the of the application and the oral presentation in Bonn (Link to the older message) in early December arrived. The reviewers gave a widely positive feedback, from which we deduce that DataPLANT is still in the group for consideration of funding. We would like to thank our collaborators from the Galaxy team, especially Anika Erxleben and from the Technical University in Kaiserslautern and Jülich Research Center. The feedback addresses various areas of the proposal, such as "Maturity and relevance", "Research data management" and "Internal structure and sustainability". Besides very positive remarks there are also some critical passages that should be considered in the answer. diff --git a/src/content/news/2020-02-10-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md b/src/content/news/2020-02-10-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md index c112a10c..61644eb9 100644 --- a/src/content/news/2020-02-10-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md +++ b/src/content/news/2020-02-10-dataplant-receives-positive-feedback-from-the-dfg-but-still-work-ahead.md @@ -1,7 +1,7 @@ --- date: 2020-02-10 title: DataPLANT receives positive feedback from the DFG, but still work ahead -previewText: DataPLANT was present at the 3rd NFDI Community Workshop - Services for Research Data Management in Neuroscience hosted at the 10th Februar at Ludwig Maximilians University Munich to exchange with other NFDI consortia and discuss common topics like infrastructure provisioning. The NFDI4Neuro as well as the NFDI4BIMP intend to hand in their proposals in this year's round of applications. The main topic of this community workshop was the exchange on infrastructure for the NFDI and especially ... +description: DataPLANT was present at the 3rd NFDI Community Workshop - Services for Research Data Management in Neuroscience hosted at the 10th Februar at Ludwig Maximilians University Munich to exchange with other NFDI consortia and discuss common topics like infrastructure provisioning. The NFDI4Neuro as well as the NFDI4BIMP intend to hand in their proposals in this year's round of applications. The main topic of this community workshop was the exchange on infrastructure for the NFDI and especially ... --- DataPLANT was present at the 3rd NFDI Community Workshop - Services for Research Data Management in Neuroscience hosted at the 10th Februar at Ludwig Maximilians University Munich to exchange with other NFDI consortia and discuss common topics like infrastructure provisioning. The NFDI4Neuro as well as the NFDI4BIMP intend to hand in their proposals in this year's round of applications. The main topic of this community workshop was the exchange on infrastructure for the NFDI and especially on the providers' perspective. diff --git a/src/content/news/2020-02-11-dataplant-advises-on-grant-application-and-discusses-compensation-models-with-participants.md b/src/content/news/2020-02-11-dataplant-advises-on-grant-application-and-discusses-compensation-models-with-participants.md index 583bd371..7b71882a 100644 --- a/src/content/news/2020-02-11-dataplant-advises-on-grant-application-and-discusses-compensation-models-with-participants.md +++ b/src/content/news/2020-02-11-dataplant-advises-on-grant-application-and-discusses-compensation-models-with-participants.md @@ -1,7 +1,7 @@ --- date: 2020-02-11 title: DataPLANT advised on grant application and discusses compensation models with participants -previewText: The NFDI starts to shape the future scientific landscape and should be taken into account when planning research projects and cooperations. Together with a participant, the "Plant Genome and Systems Biology" group at the Helmholtz-Zentrum München DataPLANT discussed possible forms of support regarding both infrastructure services and consulting. Such cooperations would require agreed upon compensation models. Both parties acknowledged the fact of challenges regarding cost compensation models ... +description: The NFDI starts to shape the future scientific landscape and should be taken into account when planning research projects and cooperations. Together with a participant, the "Plant Genome and Systems Biology" group at the Helmholtz-Zentrum München DataPLANT discussed possible forms of support regarding both infrastructure services and consulting. Such cooperations would require agreed upon compensation models. Both parties acknowledged the fact of challenges regarding cost compensation models ... --- The NFDI starts to shape the future scientific landscape and should be taken into account when planning research projects and cooperations. Together with a participant, the "Plant Genome and Systems Biology" group at the Helmholtz-Zentrum München DataPLANT discussed possible forms of support regarding both infrastructure services and consulting. Such cooperations would require agreed upon compensation models. Both parties acknowledged the fact of challenges regarding cost compensation models which comply with non-profit/public-benefit requirements and capable of being integrated into the central NFDI governance structure. diff --git a/src/content/news/2020-02-28-reply-to-the-reviewer-panels-protocol-sent-to-the-dfg.md b/src/content/news/2020-02-28-reply-to-the-reviewer-panels-protocol-sent-to-the-dfg.md index c7f8c8f5..7f00387b 100644 --- a/src/content/news/2020-02-28-reply-to-the-reviewer-panels-protocol-sent-to-the-dfg.md +++ b/src/content/news/2020-02-28-reply-to-the-reviewer-panels-protocol-sent-to-the-dfg.md @@ -1,7 +1,7 @@ --- date: 2020-02-28 title: Reply to the reviewer panel's protocol sent to the DFG -previewText: Today the DataPLANT consortium sent the three pages reply to the reviewers remark and used the chance to clarify a couple of open questions. We got a quite positive feedback on our concept of data stewards as a central support element to the fundamental plant research community. This core element makes the training and recruitment of suitable people a central task of the DataPLANT consortium. The successful training of the Data Stewards essentially requires basic skills in the standardized ... +description: Today the DataPLANT consortium sent the three pages reply to the reviewers remark and used the chance to clarify a couple of open questions. We got a quite positive feedback on our concept of data stewards as a central support element to the fundamental plant research community. This core element makes the training and recruitment of suitable people a central task of the DataPLANT consortium. The successful training of the Data Stewards essentially requires basic skills in the standardized ... --- Today the DataPLANT consortium sent the three pages reply to the reviewers remark and used the chance to clarify a couple of open questions. We got a quite positive feedback on our concept of data stewards as a central support element to the fundamental plant research community. This core element makes the training and recruitment of suitable people a central task of the DataPLANT consortium. The successful training of the Data Stewards essentially requires basic skills in the standardized handling of data, their modeling and analysis, as well as a solid domain understanding of quantitative plant biology, especially the methods used in this research field. In addition, practical skills in handling different software packages, analysis and workflow tools as well as in teaching and training are required. To ensure the training of the Data Stewards from the start of DataPLANT, we propose a strategy with a mixture of direct and long-term measures. Corresponding training and further education opportunities are already included in the curricula of the applicant institutions. It is also planned to make existing courses of study (e.g. in the field of data science) more flexible so that the basic training of data stewards can be provided within the framework of these courses of study. A new development of tailor-made courses of study is also conceivable in the long term. With regard to both measures, the applicants were able to secure the support of the partner universities in preliminary discussions. For example, the course of study Quantitative Plant Biology at CEPLAS is a valuable addition to the recruitment of personnel. diff --git a/src/content/news/2020-05-19-positive-votum-of-the-reviewer-panel-to-the-dataplant-application.md b/src/content/news/2020-05-19-positive-votum-of-the-reviewer-panel-to-the-dataplant-application.md index 444a50f4..833ec883 100644 --- a/src/content/news/2020-05-19-positive-votum-of-the-reviewer-panel-to-the-dataplant-application.md +++ b/src/content/news/2020-05-19-positive-votum-of-the-reviewer-panel-to-the-dataplant-application.md @@ -1,7 +1,7 @@ --- date: 2020-05-19 title: Positive vote of the reviewer panel to the DataPLANT application -previewText: Yesterday, on 18 May, the announced decision of the NFDI Selection Committee's panel of experts reached us. In this decision, which has yet to be confirmed by the GWK on June 26, DataPLANT was recommended for funding along with eight other consortia. We are pleased that we have been able to successfully follow our vision for RDM in fundamental plant research together with you and hope that we will master the last mile as well. Further feedback on the grant application is announced for August at ... +description: Yesterday, on 18 May, the announced decision of the NFDI Selection Committee's panel of experts reached us. In this decision, which has yet to be confirmed by the GWK on June 26, DataPLANT was recommended for funding along with eight other consortia. We are pleased that we have been able to successfully follow our vision for RDM in fundamental plant research together with you and hope that we will master the last mile as well. Further feedback on the grant application is announced for August at ... --- Yesterday, on 18 May, the announced decision of the NFDI Selection Committee's panel of experts reached us. In this decision, which has yet to be confirmed by the GWK on June 26, DataPLANT was recommended for funding along with eight other consortia. We are pleased that we have been able to successfully follow our vision for RDM in fundamental plant research together with you and hope that we will master the last mile as well. Further feedback on the grant application is announced for August at the latest. As nine consortia are recommended to be funded in this round instead of the seven originally announced, it cannot yet be said whether this will have an impact on the planned budget. The planning will be accordingly cautious. diff --git a/src/content/news/2020-06-16-dataplant-signs-the-leipzig-berlin-erklaerung-zu-nfdi-querschnittsthemen-der-infrastrukturentwicklung.md b/src/content/news/2020-06-16-dataplant-signs-the-leipzig-berlin-erklaerung-zu-nfdi-querschnittsthemen-der-infrastrukturentwicklung.md index 4dbb10f0..1f19cefa 100644 --- a/src/content/news/2020-06-16-dataplant-signs-the-leipzig-berlin-erklaerung-zu-nfdi-querschnittsthemen-der-infrastrukturentwicklung.md +++ b/src/content/news/2020-06-16-dataplant-signs-the-leipzig-berlin-erklaerung-zu-nfdi-querschnittsthemen-der-infrastrukturentwicklung.md @@ -1,7 +1,7 @@ --- date: 2020-06-16 title: DataPLANT signs the ''Leipzig-Berlin-Erklärung zu NFDI-Querschnittsthemen der Infrastrukturentwicklung'' -previewText: DataPLANT is a co-signatory of the Leipzig-Berlin Declaration on NFDI Cross-Sectional Issues in Infrastructure Development and regards this joint document as the basis for the necessary mutual coordination based on sustainable processes and structures. For example, topics that are relevant to several expert consortia are to be worked on cooperatively and across individual consortia in the interests of sustainable interoperability. Further questions from the areas of infrastructure, integration of ... +description: DataPLANT is a co-signatory of the Leipzig-Berlin Declaration on NFDI Cross-Sectional Issues in Infrastructure Development and regards this joint document as the basis for the necessary mutual coordination based on sustainable processes and structures. For example, topics that are relevant to several expert consortia are to be worked on cooperatively and across individual consortia in the interests of sustainable interoperability. Further questions from the areas of infrastructure, integration of ... --- DataPLANT is a co-signatory of the [Leipzig-Berlin Declaration on NFDI Cross-Sectional Issues in Infrastructure Development](https://zenodo.org/record/3895209#.YFi08K9KhaQ) and regards this joint document as the basis for the necessary mutual coordination based on sustainable processes and structures. For example, topics that are relevant to several expert consortia are to be worked on cooperatively and across individual consortia in the interests of sustainable interoperability. Further questions from the areas of infrastructure, integration of service providers and sustainable financing are to be discussed as well. In addition, legal issues relating to the preservation, sharing and re-use of digital objects are of relevance to all consortia. Therefore, key issues concerning licences, the handling of sensitive data, IT law, data protection and confidentiality of data should be addressed for the whole NFDI. diff --git a/src/content/news/2020-06-26-dataplants-funding-got-granted-by-the-gwk-kick-off-in-progress.md b/src/content/news/2020-06-26-dataplants-funding-got-granted-by-the-gwk-kick-off-in-progress.md index f9bad432..84d6a8c2 100644 --- a/src/content/news/2020-06-26-dataplants-funding-got-granted-by-the-gwk-kick-off-in-progress.md +++ b/src/content/news/2020-06-26-dataplants-funding-got-granted-by-the-gwk-kick-off-in-progress.md @@ -1,7 +1,7 @@ --- date: 2020-06-26 title: DataPLANT's funding got granted by the GWK / Kick-Off in Progress -previewText: DataPLANT has been informed that the Joint Science Conference (GWK) has followed the recommendation of the NFDI Expert Panel and today decided to support the NFDI 7/1 DataPLANT proposal. Furthermore, it was informed that the GWK has not yet made a final decision on the amount of funding to be granted per consortium. This decision will be taken on the basis of a consultation of the NFDI expert panel, which will take place on 9 July. An official ... +description: DataPLANT has been informed that the Joint Science Conference (GWK) has followed the recommendation of the NFDI Expert Panel and today decided to support the NFDI 7/1 DataPLANT proposal. Furthermore, it was informed that the GWK has not yet made a final decision on the amount of funding to be granted per consortium. This decision will be taken on the basis of a consultation of the NFDI expert panel, which will take place on 9 July. An official ... --- DataPLANT has been informed that the Joint Science Conference (GWK) has followed the recommendation of the NFDI Expert Panel and today decided to support the [NFDI 7/1 DataPLANT proposal]((press release of the GWK). Furthermore, it was informed that the GWK has not yet made a final decision on the amount of funding to be granted per consortium. This decision will be taken on the basis of a consultation of the NFDI expert panel, which will take place on 9 July. An official notification from the University of Freiburg as consortium leader in DataPLANT is also available. In parallel to the ongoing planning for the project kick-off, DataPLANT has entered into coordination with the NFDI directorate and exchange with the other funded consortia on consortium agreement, recruitment and cross-cutting topics. Further on DataPLANT participates in the joint NFDI workshop on meta data. \ No newline at end of file diff --git a/src/content/news/2020-07-09-dataplant-participated-in-the-2nd-nfdi-conference.md b/src/content/news/2020-07-09-dataplant-participated-in-the-2nd-nfdi-conference.md index e0a34842..417d5b84 100644 --- a/src/content/news/2020-07-09-dataplant-participated-in-the-2nd-nfdi-conference.md +++ b/src/content/news/2020-07-09-dataplant-participated-in-the-2nd-nfdi-conference.md @@ -1,7 +1,7 @@ --- date: 2020-07-09 title: DataPLANT participated in the 2nd NFDI conference -previewText: DataPLANT - a NFDI initiative focused on fundamental plant research - participated in the NFDI Conference 2020 held on 8th and 9th July 2020 online. DataPLANT was presented beside all the other consortia proposed for funding or in the planning stage. The presentations gave the respective intentions and scientific communities supported in parallel tracks. The abstracts contain an overview on the consortium and the scientific communities addressed as well as information on the focus, user needs ... +description: DataPLANT - a NFDI initiative focused on fundamental plant research - participated in the NFDI Conference 2020 held on 8th and 9th July 2020 online. DataPLANT was presented beside all the other consortia proposed for funding or in the planning stage. The presentations gave the respective intentions and scientific communities supported in parallel tracks. The abstracts contain an overview on the consortium and the scientific communities addressed as well as information on the focus, user needs ... --- DataPLANT - a NFDI initiative focused on fundamental plant research - participated in the [NFDI Conference 2020](https://www.dfg.de/en/research_funding/programmes/nfdi/conference_2020/index.html) held on 8th and 9th July 2020 online. DataPLANT was presented beside all the other consortia proposed for funding or in the planning stage. The presentations gave the respective intentions and scientific communities supported in parallel tracks. The [abstracts](https://www.dfg.de/foerderung/programme/nfdi/konferenz_2020/konferenzabstracts/index.html) ([DataPLANT abstract](https://www.dfg.de/download/pdf/foerderung/programme/nfdi/nfdi_konferenz_2020/dataplant_abstract.pdf)) contain an overview on the consortium and the scientific communities addressed as well as information on the focus, user needs and objectives of the (planned) consortium. In addition to contributions from the GWK, the DFG and the NFDI board of directors, the abstracts presented the current state of discussion, planning and development. diff --git a/src/content/news/2020-08-26-dataplant-took-part-in-the-1st-nfdi-strategic-workshop.md b/src/content/news/2020-08-26-dataplant-took-part-in-the-1st-nfdi-strategic-workshop.md index a174a15b..3eff7c9d 100644 --- a/src/content/news/2020-08-26-dataplant-took-part-in-the-1st-nfdi-strategic-workshop.md +++ b/src/content/news/2020-08-26-dataplant-took-part-in-the-1st-nfdi-strategic-workshop.md @@ -1,7 +1,7 @@ --- date: 2020-08-26 title: DataPLANT took part in the 1st NFDI strategic workshop -previewText: DataPLANT participated in the first NFDI strategy workshop initiated and coordinated by the NFDI directorate. The workshop intended to find joint solutions and to tackle the further development of the NFDI focusing on cross-cutting topics. Not every cross-cutting issue is necessarily dealt with to the same extent by all consortia. DataPLANT e.g. indicated to cooperate on Research Data Commons (Infrastructures), (Meta)Data, findability, provenance, quality management and assurance as well as legal ... +description: DataPLANT participated in the first NFDI strategy workshop initiated and coordinated by the NFDI directorate. The workshop intended to find joint solutions and to tackle the further development of the NFDI focusing on cross-cutting topics. Not every cross-cutting issue is necessarily dealt with to the same extent by all consortia. DataPLANT e.g. indicated to cooperate on Research Data Commons (Infrastructures), (Meta)Data, findability, provenance, quality management and assurance as well as legal ... --- DataPLANT participated in the first NFDI strategy workshop initiated and coordinated by the NFDI directorate. The workshop intended to find joint solutions and to tackle the further development of the NFDI focusing on cross-cutting topics. Not every cross-cutting issue is necessarily dealt with to the same extent by all consortia. DataPLANT e.g. indicated to cooperate on Research Data Commons (Infrastructures), (Meta)Data, findability, provenance, quality management and assurance as well as legal aspects. Further fields of common interest are user-driven developments, training and education and how to stimulate cultural change. DataPLANT plans to foster the cultural change towards the wide acceptance of data publications. In the upcoming phase the governance and sustainibility, internationalisation, policy advice and consultation will be jointly developed. Furthermore suggestions were taken up, according to which there should be a discussion on how best to integrate the consortia of the next round and whether tools/methods/filetypes might be suitable as an additional cross-cutting theme. diff --git a/src/content/news/2020-08-31-dataplant-pre-kick-off-coordination-meeting.md b/src/content/news/2020-08-31-dataplant-pre-kick-off-coordination-meeting.md index f009cc74..6d27ca65 100644 --- a/src/content/news/2020-08-31-dataplant-pre-kick-off-coordination-meeting.md +++ b/src/content/news/2020-08-31-dataplant-pre-kick-off-coordination-meeting.md @@ -1,7 +1,7 @@ --- date: 2020-08-31 title: DataPLANT pre kick-off coordination meeting -previewText: The (co-)applicant group of DataPLANT (speakers of the consortium) met in Annweiler/Trifels from Thursday to Saturday (27th till 29th August) to discuss the kick-off of the governance and to prepare the various boardmeetings which will be held in the coming weeks. The senior menagement board will have it's inaugural meeting the 3rd September, followed by the scientific and technical board meetings. These meetings are part of the NFDI and DataPLANT community governance. The coordination ... +description: The (co-)applicant group of DataPLANT (speakers of the consortium) met in Annweiler/Trifels from Thursday to Saturday (27th till 29th August) to discuss the kick-off of the governance and to prepare the various boardmeetings which will be held in the coming weeks. The senior menagement board will have it's inaugural meeting the 3rd September, followed by the scientific and technical board meetings. These meetings are part of the NFDI and DataPLANT community governance. The coordination ... --- The (co-)applicant group of DataPLANT (speakers of the consortium) met in Annweiler/Trifels from Thursday to Saturday (27th till 29th August) to discuss the kick-off of the governance and to prepare the various boardmeetings which will be held in the coming weeks. The senior menagement board will have it's inaugural meeting the 3rd September, followed by the scientific and technical board meetings. These meetings are part of the NFDI and DataPLANT community governance. The coordination meeting discussed the final grant and the implications from the budget cuts announced earlier. These will influence the scope and width of workpackages. Futher topics were the rules of compensation within the consortium and the hiring of personnel for each task area starting from now. Open posts will get announced through the [central NFDI platform](https://www.nfdi.de/jobs) as well as at the upcoming GAIN event. diff --git a/src/content/news/2020-09-11-dataplant-governance-first-round-of-board-meetings-held.md b/src/content/news/2020-09-11-dataplant-governance-first-round-of-board-meetings-held.md index 73420196..dc92db7f 100644 --- a/src/content/news/2020-09-11-dataplant-governance-first-round-of-board-meetings-held.md +++ b/src/content/news/2020-09-11-dataplant-governance-first-round-of-board-meetings-held.md @@ -1,7 +1,7 @@ --- date: 2020-09-11 title: "DataPLANT governance: First round of board meetings held" -previewText: During the beginning of September the board meetings were held, starting with the Senior ManagementBoard followed both by the Scientific and Technical bards. The first round of meetings got chaired bythe speaker, future meetings will be coordinated by a board chair supported by the office. It was decided to make the relevant informationtransparent; thus the slides and minutes are directly available via the linked PDFs. All information presented and decisions made will be made public in the future ... +description: During the beginning of September the board meetings were held, starting with the Senior ManagementBoard followed both by the Scientific and Technical bards. The first round of meetings got chaired bythe speaker, future meetings will be coordinated by a board chair supported by the office. It was decided to make the relevant informationtransparent; thus the slides and minutes are directly available via the linked PDFs. All information presented and decisions made will be made public in the future ... --- During the beginning of September the board meetings were held, starting with the Senior ManagementBoard followed both by the Scientific and Technical bards. The first round of meetings got chaired bythe speaker, future meetings will be coordinated by a board chair supported by the office. It was decided to make the relevant informationtransparent; thus the slides and minutes are directly available via the linked PDFs. All information presented and decisions made will be made public in the future as well at least to all participants of DataPLANT. Until DataPLANT is officially started, the new web site is becoming available and the cooperation and participation tools are deciced upon, the documents will reside on the preliminary web site. diff --git a/src/content/news/2020-09-21-First-General-Assembly.md b/src/content/news/2020-09-21-First-General-Assembly.md index 0e465e1d..3f302693 100644 --- a/src/content/news/2020-09-21-First-General-Assembly.md +++ b/src/content/news/2020-09-21-First-General-Assembly.md @@ -1,7 +1,7 @@ --- date: 2020-09-21 title: "DataPLANT: First General Assembly" -previewText: On 21st September the DataPLANT participants gathered online to officially meet for the First General Assembly of the consortium. More then 40 people participated and discussed in the two hours session. At the beginning the DataPLANT mission got refined and explained and how it fits into the NFDI general objectives. The NFDI intends to build a national, sustainable data infrastructure for disciplinary sciences. All successful consortia will enjoy a funding for five years initially. After a successful... +description: On 21st September the DataPLANT participants gathered online to officially meet for the First General Assembly of the consortium. More then 40 people participated and discussed in the two hours session. At the beginning the DataPLANT mission got refined and explained and how it fits into the NFDI general objectives. The NFDI intends to build a national, sustainable data infrastructure for disciplinary sciences. All successful consortia will enjoy a funding for five years initially. After a successful... --- On 21st September the DataPLANT participants gathered online to officially meet for the First General Assembly of the consortium. More then 40 people participated and discussed in the two hours session. At diff --git a/src/content/news/2020-10-05-DataPLANT-extends-the-Call-for-ARC-to-the-wider-community.md b/src/content/news/2020-10-05-DataPLANT-extends-the-Call-for-ARC-to-the-wider-community.md index eb11c150..e579b2bb 100644 --- a/src/content/news/2020-10-05-DataPLANT-extends-the-Call-for-ARC-to-the-wider-community.md +++ b/src/content/news/2020-10-05-DataPLANT-extends-the-Call-for-ARC-to-the-wider-community.md @@ -1,7 +1,7 @@ --- date: 2020-10-05 title: DataPLANT extends the Call-for-ARC to the wider community -previewText: The Annotated Research Context (ARC) is a conceptual combination of experimental data with associated annotation, metadata and description of computational workflows. It aims both as structuring the workflows on the local desktop of the user, allow for sharing and versioning and finally be the base of a data publication. The ARC covers the complete research cycle and includes experiment data described with the ISA model, reference knowledge, computational steps like software, code and ... +description: The Annotated Research Context (ARC) is a conceptual combination of experimental data with associated annotation, metadata and description of computational workflows. It aims both as structuring the workflows on the local desktop of the user, allow for sharing and versioning and finally be the base of a data publication. The ARC covers the complete research cycle and includes experiment data described with the ISA model, reference knowledge, computational steps like software, code and ... --- The Annotated Research Context (ARC) is a conceptual combination of diff --git a/src/content/news/2020-10-21-DataPLANT-participates-in-Second-NFDI-strategy-workshops.md b/src/content/news/2020-10-21-DataPLANT-participates-in-Second-NFDI-strategy-workshops.md index 87215e2f..8737656b 100644 --- a/src/content/news/2020-10-21-DataPLANT-participates-in-Second-NFDI-strategy-workshops.md +++ b/src/content/news/2020-10-21-DataPLANT-participates-in-Second-NFDI-strategy-workshops.md @@ -1,7 +1,7 @@ --- date: 2020-10-21 title: DataPLANT participates in Second NFDI strategy workshops -previewText: "The second NFDI strategy workshop focused on vision, values, mission as well as on the technical architecture of the NFDI. The workshop was organized by the NFDI Directorate. In the meantime the association has been successfully founded and registered. The directorate has also been completed in terms of personnel. The aim of the workshop was to sharpen the vision through the participating consortia: Why are we doing this and what kind of world do we dream of? There was also an exchange about ..." +description: "The second NFDI strategy workshop focused on vision, values, mission as well as on the technical architecture of the NFDI. The workshop was organized by the NFDI Directorate. In the meantime the association has been successfully founded and registered. The directorate has also been completed in terms of personnel. The aim of the workshop was to sharpen the vision through the participating consortia: Why are we doing this and what kind of world do we dream of? There was also an exchange about ..." --- The second NFDI strategy workshop focused on vision, values, mission as diff --git a/src/content/news/2020-10-22-DataPLANT-is-happy-to-annouce-a-project-coordinator.md b/src/content/news/2020-10-22-DataPLANT-is-happy-to-annouce-a-project-coordinator.md index 23b023a4..5c476fea 100644 --- a/src/content/news/2020-10-22-DataPLANT-is-happy-to-annouce-a-project-coordinator.md +++ b/src/content/news/2020-10-22-DataPLANT-is-happy-to-annouce-a-project-coordinator.md @@ -1,7 +1,7 @@ --- date: 2020-10-22 title: DataPLANT is happy to annouce a project coordinator -previewText: The DataPLANT NFDI was able to convince Cristina, a highly skilled person about to graduate in fundamental plant research as a project coordinator. She will help to work on DataPLANT mission to combine the technical expertise in the areas of basic plant research, information and computer sciences and infrastructure specialists for supporting plant scientists in the handling of research data in a customized way. +description: The DataPLANT NFDI was able to convince Cristina, a highly skilled person about to graduate in fundamental plant research as a project coordinator. She will help to work on DataPLANT mission to combine the technical expertise in the areas of basic plant research, information and computer sciences and infrastructure specialists for supporting plant scientists in the handling of research data in a customized way. --- The DataPLANT NFDI was able to convince Cristina, a highly skilled diff --git a/src/content/news/2020-10-30-Kick-Off-Task-Area-2-Software-Services.md b/src/content/news/2020-10-30-Kick-Off-Task-Area-2-Software-Services.md index 66c8723b..1713b53e 100644 --- a/src/content/news/2020-10-30-Kick-Off-Task-Area-2-Software-Services.md +++ b/src/content/news/2020-10-30-Kick-Off-Task-Area-2-Software-Services.md @@ -1,7 +1,7 @@ --- date: 2020-10-30 title: Kick-Off Task Area 2 ''Software/Service'' -previewText: On October, 30th the participants in Task Area 2 gathered to discuss and define the direction of the developments in software, services and infrastructure. The participants bring in a diverse expertise in a broad range of field to foster a lively exchange and a broad range of concepts and ideas to be discussed with the community. +description: On October, 30th the participants in Task Area 2 gathered to discuss and define the direction of the developments in software, services and infrastructure. The participants bring in a diverse expertise in a broad range of field to foster a lively exchange and a broad range of concepts and ideas to be discussed with the community. --- On October, 30th the participants in Task Area 2 gathered to discuss and define the direction of the developments in software, services and infrastructure. The participants bring in a diverse expertise in a broad range of field to foster a lively exchange and a broad range of concepts and ideas to be discussed with the community: Christoph Garth is an expert in visualizing biological data in HPC context, setting up workflows on large data sets and integrating them into services landscape. Stefan Dessloch contributes deep insights into data base design and transformation of data. Björn Grüning is heavily involved in Galaxy, Bioconda, BioContainers, bioinformatical workflows, Elixir, EOSC(-life), EGI and Healthy Cloud. Heike Leitte is an expert on visualization, human machine interaction, the use of Jupyter notebooks and machine learning. Sven Nahnsen brings in the QBIC insights on *omics workflows, portal design, Nextflow and metadata in the field of bioinformatics. Dirk von Suchodoletz brings in the provider's perspective on the technical aspects in research data management, service integration and general infrastructure. Jens Kürger, the head of TA2, is deeply involved in the bwHPC (Baden-Württemberg HCP), de.NBI Cloud, the Tübingen Machine Learning Cloud, EOSC-life, Healthy Cloud, the GHGA NFDI and participated in MoSGrid. Kaus Rechert contributes his expertise in long-term access to digital objects, such as software preservation, long-term strategies, archiving in the mixture of software and data. diff --git a/src/content/news/2020-11-16-State-of-the-backend-storage-infrastructure-is-evolving.md b/src/content/news/2020-11-16-State-of-the-backend-storage-infrastructure-is-evolving.md index c98187f3..8b7dbd1a 100644 --- a/src/content/news/2020-11-16-State-of-the-backend-storage-infrastructure-is-evolving.md +++ b/src/content/news/2020-11-16-State-of-the-backend-storage-infrastructure-is-evolving.md @@ -1,7 +1,7 @@ --- date: 2020-11-16 title: State of the backend storage infrastructure is evolving -previewText: The storage system bwSFS (Storage-for-Science) forms the geo-redundant distributed technical backbone for basic storage services, research data management and sharing of data. It contributes to the storage infrastructure for the DataPLANT community beside the de.NBI infrastructure services. The central storage components of bwSFS are located at the Tübingen and Freiburg computer centers. In order to reasonably manage the intended broad user base of the system - besides DataPLANT, the local ... +description: The storage system bwSFS (Storage-for-Science) forms the geo-redundant distributed technical backbone for basic storage services, research data management and sharing of data. It contributes to the storage infrastructure for the DataPLANT community beside the de.NBI infrastructure services. The central storage components of bwSFS are located at the Tübingen and Freiburg computer centers. In order to reasonably manage the intended broad user base of the system - besides DataPLANT, the local ... --- The storage system bwSFS (Storage-for-Science) forms the geo-redundant distributed technical backbone for basic storage services, research data management and sharing of data. It contributes to the storage infrastructure for the DataPLANT community beside the de.NBI infrastructure services. The central storage components of bwSFS are located at the Tübingen and Freiburg computer centers. In order to reasonably manage the intended broad user base of the system - besides DataPLANT, the local communities of the participating universities and the Science Data Center BioDATEN are served as well - and to achieve a seamless integration into the envisioned DataPLANT services, a federated management of project, user and group data is necessary. Already in the implementation phase of the software and services, which involves the subject sciences, it becomes apparent that the existing methods for identity management are not sufficient. Compared to HPC services, storage services require a much deeper integration of existing infrastructures and a more flexible user management, which should also include ORCID, for example. diff --git a/src/content/news/2020-11-24-Persistens-person-identifiers-for-long-time-research-data.md b/src/content/news/2020-11-24-Persistens-person-identifiers-for-long-time-research-data.md index 15926b86..2d0aaf20 100644 --- a/src/content/news/2020-11-24-Persistens-person-identifiers-for-long-time-research-data.md +++ b/src/content/news/2020-11-24-Persistens-person-identifiers-for-long-time-research-data.md @@ -1,7 +1,7 @@ --- date: 2020-11-24 title: Persistent person identifiers for long time research data -previewText: In a significantly networked and highly collaborative scientific field such as plant research, the goal is to jointly use and federate services for data management. With the goal of a well acknowledged data publication in mind a persistent link between research objects like published Annotated Research Contexts (ARC) and persons need to be established and maintained. Of central importance for this objective are persistent identifiers of researchers. Because of the high turnover within this group ... +description: In a significantly networked and highly collaborative scientific field such as plant research, the goal is to jointly use and federate services for data management. With the goal of a well acknowledged data publication in mind a persistent link between research objects like published Annotated Research Contexts (ARC) and persons need to be established and maintained. Of central importance for this objective are persistent identifiers of researchers. Because of the high turnover within this group ... --- In a significantly networked and highly collaborative scientific field such as plant research, the goal is to jointly use and federate services for data management. With the goal of a well acknowledged data publication in mind a persistent link between research objects like published Annotated Research Contexts (ARC) and persons need to be established and maintained. Of central importance for this objective are persistent identifiers of researchers. Because of the high turnover within this group of individuals, agreement among all stakeholders in the science enterprise on a uniform, internationally recognized, and institution-wide system would be a considerable relief, since switching between institutions would no longer require changes in the database. Such an internationally recognized identifier should be stable and unique for individuals. In the course of the work of the Baden-Württemberg-based Science Data Center BioDATEN, which has personnel overlaps with DataPLANT, initial discussions were held in this direction. diff --git a/src/content/news/2020-12-11-Gitlab-and-large-files-data-sharing-and-versioning-for-the-DataPLANT-community.md b/src/content/news/2020-12-11-Gitlab-and-large-files-data-sharing-and-versioning-for-the-DataPLANT-community.md index 83d15640..b4c77c51 100644 --- a/src/content/news/2020-12-11-Gitlab-and-large-files-data-sharing-and-versioning-for-the-DataPLANT-community.md +++ b/src/content/news/2020-12-11-Gitlab-and-large-files-data-sharing-and-versioning-for-the-DataPLANT-community.md @@ -1,7 +1,7 @@ --- date: 2020-12-11 title: Gitlab and large files - data sharing and versioning for the DataPLANT community -previewText: DataPLANT needs a solid technical base for collaboration within projects and between (inter)national research groups. This can be achieved through a framework which supports data versioning and sharing. The starting point is the Annotated Research Context (ARC) which got presented in an Kick-Off Task Area 2 "Software / Services". A widely used platform - well beyond it's original purpose of maintaining code in collaborative software projects - is the versioning software Git. As the ARC consists ... +description: DataPLANT needs a solid technical base for collaboration within projects and between (inter)national research groups. This can be achieved through a framework which supports data versioning and sharing. The starting point is the Annotated Research Context (ARC) which got presented in an Kick-Off Task Area 2 "Software / Services". A widely used platform - well beyond it's original purpose of maintaining code in collaborative software projects - is the versioning software Git. As the ARC consists ... --- DataPLANT needs a solid technical base for collaboration within projects and between (inter)national research groups. This can be achieved through a framework which supports data versioning and sharing. The starting point is the Annotated Research Context (ARC) which got presented in an Kick-Off Task Area 2 "Software / Services". A widely used platform - well beyond it's original purpose of maintaining code in collaborative software projects - is the versioning software Git. As the ARC consists of multiple file formats including large files of raw data from various inputs it needs to deal with large files as well. As git was originally created with source code in mind, the plain version is not well suited in this regard as it is implemented as a distributed version control system (DVCS). It is not centralized by default and does not implement an inherent repo hierarchy. All clones contain the full history by default. Git uses sparse clones, sparse checkouts but still performs poorly with larger files. A possible solution is to use sparse checkouts for large repositories diff --git a/src/content/news/2020-12-17-Participation-in-the-virtual-HeFDI-Plenary-at-Philipps-University-Marburg.md b/src/content/news/2020-12-17-Participation-in-the-virtual-HeFDI-Plenary-at-Philipps-University-Marburg.md index 12171a2c..3cee6cb5 100644 --- a/src/content/news/2020-12-17-Participation-in-the-virtual-HeFDI-Plenary-at-Philipps-University-Marburg.md +++ b/src/content/news/2020-12-17-Participation-in-the-virtual-HeFDI-Plenary-at-Philipps-University-Marburg.md @@ -1,7 +1,7 @@ --- date: 2020-12-17 title: Participation in the virtual HeFDI-Plenary at Philipps-University Marburg -previewText: The Hessian Research Data Infrastructures HeFDI hosted its first virtual Plenary on December 17 last year, and DataPLANT was on board. The primary focus of the event was both cross-site networking of RDM-related groups and illustrating the change about the way data is handled. Especially the inspiring keynote by Prof. Dr. Iris Pigeot from BIPS Bremen, entitled "Data Science and Data Sharing - Mission Impossible without Intelligent Research Data Management?" forced the urgency of well conceived ... +description: The Hessian Research Data Infrastructures HeFDI hosted its first virtual Plenary on December 17 last year, and DataPLANT was on board. The primary focus of the event was both cross-site networking of RDM-related groups and illustrating the change about the way data is handled. Especially the inspiring keynote by Prof. Dr. Iris Pigeot from BIPS Bremen, entitled "Data Science and Data Sharing - Mission Impossible without Intelligent Research Data Management?" forced the urgency of well conceived ... --- The Hessian Research Data Infrastructures ([HeFDI](https://www.uni-marburg.de/de/hefdi)) hosted its first virtual [Plenary](https://www.uni-marburg.de/de/hefdi/veranstaltungen/hefdi-plenary-2020) on December 17 last year, and DataPLANT was on board. The primary focus of the event was both cross-site networking of RDM-related groups and illustrating the change about the way data is handled. Especially the inspiring keynote by Prof. Dr. Iris Pigeot from BIPS Bremen, entitled "Data Science and Data Sharing - Mission Impossible without Intelligent Research Data Management?" forced the urgency of well conceived data management. In the subsequent parallel poster sessions, various projects and infrastructure services presented themselves. The [poster introducing DataPLANT](https://ilias.uni-marburg.de/goto.php?target=prtt_2225531&client_id=UNIMR) was launched in a breakout session together with the [NFDI4BioDiversity](https://ilias.uni-marburg.de/goto.php?target=prtt_2225495&client_id=UNIMR) poster. One of the common challenges faced by the discussing participants was the acquisition and training of qualified personnel especially data stewards The event successfully invited for networking between different consortia and we are looking forward to a next event. diff --git a/src/content/news/2020-12-18-DataPLANT-participates-in-the-CfP-for-the-E-Science-Tage-2021-Share-Your-Research-Data.md b/src/content/news/2020-12-18-DataPLANT-participates-in-the-CfP-for-the-E-Science-Tage-2021-Share-Your-Research-Data.md index 0538e68d..e0248dcb 100644 --- a/src/content/news/2020-12-18-DataPLANT-participates-in-the-CfP-for-the-E-Science-Tage-2021-Share-Your-Research-Data.md +++ b/src/content/news/2020-12-18-DataPLANT-participates-in-the-CfP-for-the-E-Science-Tage-2021-Share-Your-Research-Data.md @@ -1,7 +1,7 @@ --- date: 2020-12-18 title: DataPLANT participates in the CfP for the ''E-ScienceTage 2021 - Share Your Research Data'' -previewText: 'DataPLANT submitted three proposals following the Call for Papers of the E-Science-Tage 2021: Share Your Research Data scheduled for beginning of March in Heidelberg.' +description: 'DataPLANT submitted three proposals following the Call for Papers of the E-Science-Tage 2021: Share Your Research Data scheduled for beginning of March in Heidelberg.' --- DataPLANT submitted three proposals following the Call for Papers of the ["E-Science-Tage 2021: Share Your Research Data"](https://e-science-tage.de/en) scheduled for beginning of March in Heidelberg. The consortium plans to participate in the workshop suggested by the NFDI directorate to present the fundamental plant research community as part of the future research data management landscape. Such an integrated RDM landscape and services enables reproducible research, the linking of interdisciplinary expertise, the sharing of research for comparison and integration of different analysis results and metadata studies, taking advantage of the immense additional knowledge gained from them. Additionally, we suggested a short paper on the DataPLANT data steward model, as a core element of a holistic strategy for managing research data in the field of plant research. Research groups will profit from direct support in their daily tasks ranging from data organization to the selection of the proper tools, workflows and standards. Data stewards play a special hinge role between service providers, individual researchers, groups and the wider community. They also help bridging the gap between researchers and technical systems. The coordinated deployment of data stewards supports the adherence to good scientific practice among the research community. diff --git a/src/content/news/2020-12-20-dataplant-wishes-a-merry-christmas.md b/src/content/news/2020-12-20-dataplant-wishes-a-merry-christmas.md index 352c4c01..20a8635d 100644 --- a/src/content/news/2020-12-20-dataplant-wishes-a-merry-christmas.md +++ b/src/content/news/2020-12-20-dataplant-wishes-a-merry-christmas.md @@ -1,7 +1,7 @@ --- date: 2020-12-20 title: DataPLANT wishes a Merry Christmas -previewText: 🎅❄️🎄 +description: 🎅❄️🎄 --- ![DataPLANT wishes a Merry Christmas](/src/assets/images/news/christmas2020.png "DataPLANT wishes a Merry Christmas"){width=70%} \ No newline at end of file diff --git a/src/content/news/2021-01-18-Virtual-exchange-between-NFDI4BioDiversity-and-DataPLANT.md b/src/content/news/2021-01-18-Virtual-exchange-between-NFDI4BioDiversity-and-DataPLANT.md index 872136cc..1b3c3649 100644 --- a/src/content/news/2021-01-18-Virtual-exchange-between-NFDI4BioDiversity-and-DataPLANT.md +++ b/src/content/news/2021-01-18-Virtual-exchange-between-NFDI4BioDiversity-and-DataPLANT.md @@ -1,7 +1,7 @@ --- date: 2021-01-18 title: Virtual exchange between NFDI4BioDiversity and DataPLANT -previewText: Envisioning the collaboration within all NFDI-consortia, members NFDI4BioDiversity and DataPLANT met at the behinning of the new year for a virtual exchange to discuss cross-cutting issues such as standardization, teaching and qualification, common base level infrastructure, the role of data experts and support in research data management, sustainable financing and consortia extension strategies and common strategies of life sciences-related NFDI consortia. The conversation on the challenging ... +description: Envisioning the collaboration within all NFDI-consortia, members NFDI4BioDiversity and DataPLANT met at the behinning of the new year for a virtual exchange to discuss cross-cutting issues such as standardization, teaching and qualification, common base level infrastructure, the role of data experts and support in research data management, sustainable financing and consortia extension strategies and common strategies of life sciences-related NFDI consortia. The conversation on the challenging ... --- Envisioning the collaboration within all NFDI-consortia, members of **[NFDI4BioDiversity](https://www.nfdi4biodiversity.org/)** and DataPLANT met at the behinning of the new year for a virtual exchange to discuss cross-cutting issues such as standardization, teaching and qualification, common base level infrastructure, the role of data experts and support in research data management, sustainable financing and consortia extension strategies and common strategies of life sciences-related NFDI consortia. diff --git a/src/content/news/2021-01-28-Exchange-of-ideas-on-concepts-for-sustainable-operation-and-community-extension.md b/src/content/news/2021-01-28-Exchange-of-ideas-on-concepts-for-sustainable-operation-and-community-extension.md index 8f1e2c5d..50c5e2eb 100644 --- a/src/content/news/2021-01-28-Exchange-of-ideas-on-concepts-for-sustainable-operation-and-community-extension.md +++ b/src/content/news/2021-01-28-Exchange-of-ideas-on-concepts-for-sustainable-operation-and-community-extension.md @@ -1,7 +1,7 @@ --- date: 2021-01-28 title: Exchange of ideas on concepts for sustainable operation and community extension -previewText: The project coordinator and speaker of DataPLANT had an online meeting with the NFDI representative of the DFG regarding further community involvment and sustainable development of the consortium and the NFDI. In the half hours talk possible ideas got exchanged, how future project applications could foster the developments to support the steadily expanse of the number of researchers represented by the NFDI. This includes the ongoing process of forming consortia as well as the activities within ... +description: The project coordinator and speaker of DataPLANT had an online meeting with the NFDI representative of the DFG regarding further community involvment and sustainable development of the consortium and the NFDI. In the half hours talk possible ideas got exchanged, how future project applications could foster the developments to support the steadily expanse of the number of researchers represented by the NFDI. This includes the ongoing process of forming consortia as well as the activities within ... --- The project coordinator and speaker of DataPLANT had an online meeting with the NFDI representative of the DFG regarding further community involvment and sustainable development of the consortium and the NFDI. In the half hours talk possible ideas got exchanged, how future project applications could foster the developments to support the steadily expanse of the number of researchers represented by the NFDI. This includes the ongoing process of forming consortia as well as the activities within the already funded consortia to increase their outreach. A crucial task of the consortia is to extend their visibility to the entirety of their researchers. This highlights the credibility to represent their respective fields and establish common standards and concepts. One of the success criteria for the funded consortia is to cover their own specialist community as fully as possible and to network with adjacent research areas. For this purpose, a coordinated onboarding process should be agreed on how new members are formally added to a consortium and incorporated into the governance structure. diff --git a/src/content/news/2021-02-01-Swobup-the-Swate-OBO-Updater-to-foster-the-standardization-process.md b/src/content/news/2021-02-01-Swobup-the-Swate-OBO-Updater-to-foster-the-standardization-process.md index 414ae136..80610045 100644 --- a/src/content/news/2021-02-01-Swobup-the-Swate-OBO-Updater-to-foster-the-standardization-process.md +++ b/src/content/news/2021-02-01-Swobup-the-Swate-OBO-Updater-to-foster-the-standardization-process.md @@ -1,7 +1,7 @@ --- date: 2021-02-01 title: Swobup - the Swate OBO Updater to foster the standardization process -previewText: Joint efforts of TaskArea 1 (standardization), TaskArea 2 (technical infrastructure) and TaskArea 3 (data stewards, community support) focusing on the optimization of digital workflows in plant sciences, have enabled one of our developers from Freiburg to implement a tool that facilitates the use of the Swate tool. The tool operates in the background on the Swate Database hosted at the DataPLANT site in Tübingen. Swate is a Swate Workflow Annotation Tool for the Excel spreadsheet application ... +description: Joint efforts of TaskArea 1 (standardization), TaskArea 2 (technical infrastructure) and TaskArea 3 (data stewards, community support) focusing on the optimization of digital workflows in plant sciences, have enabled one of our developers from Freiburg to implement a tool that facilitates the use of the Swate tool. The tool operates in the background on the Swate Database hosted at the DataPLANT site in Tübingen. Swate is a Swate Workflow Annotation Tool for the Excel spreadsheet application ... --- Joint efforts of TaskArea 1 (standardization), TaskArea 2 (technical infrastructure) and TaskArea 3 (data stewards, community support) focusing on the optimization of digital workflows in plant sciences, have enabled one of our developers from Freiburg to implement a tool that facilitates the use of the Swate tool. The tool operates in the background on the Swate Database hosted at the DataPLANT site in Tübingen. diff --git a/src/content/news/2021-02-16-DataPLANT-will-give-a-NFDI-talk-on-community-pervasion-and-sustainability.md b/src/content/news/2021-02-16-DataPLANT-will-give-a-NFDI-talk-on-community-pervasion-and-sustainability.md index 0b52764c..44d1e884 100644 --- a/src/content/news/2021-02-16-DataPLANT-will-give-a-NFDI-talk-on-community-pervasion-and-sustainability.md +++ b/src/content/news/2021-02-16-DataPLANT-will-give-a-NFDI-talk-on-community-pervasion-and-sustainability.md @@ -1,7 +1,7 @@ --- date: 2021-02-16 title: DataPLANT will give a NFDI talk on community pervasion and sustainability -previewText: At the following NFDI talk on March 1, 4 p.m., the speaker of DataPLANT will give a presentation on the current state of the discussion on "Community Pervasion and Sustainability". This contribution addresses the cross-cutting topic of further NFDI development and integrates key aspects discussed since the beginning of the project in September 2020, such as in the speaker jour fix, the exchange with the DFG in mid-January 2021 and the NFDI directorate in February. One of the main goals of each ... +description: At the following NFDI talk on March 1, 4 p.m., the speaker of DataPLANT will give a presentation on the current state of the discussion on "Community Pervasion and Sustainability". This contribution addresses the cross-cutting topic of further NFDI development and integrates key aspects discussed since the beginning of the project in September 2020, such as in the speaker jour fix, the exchange with the DFG in mid-January 2021 and the NFDI directorate in February. One of the main goals of each ... --- At the following NFDI talk on March 1, 4 p.m., the speaker of DataPLANT will give a presentation on the current state of the discussion on "Community Pervasion and Sustainability". This contribution addresses the cross-cutting topic of further NFDI development and integrates key aspects discussed since the beginning of the project in September 2020, such as in the speaker jour fix, the exchange with the DFG in mid-January 2021 and the NFDI directorate in February. diff --git a/src/content/news/2021-02-25-Participation-of-DataPLANT-at-the-E-Science-Tage.md b/src/content/news/2021-02-25-Participation-of-DataPLANT-at-the-E-Science-Tage.md index 918ef858..5ec30649 100644 --- a/src/content/news/2021-02-25-Participation-of-DataPLANT-at-the-E-Science-Tage.md +++ b/src/content/news/2021-02-25-Participation-of-DataPLANT-at-the-E-Science-Tage.md @@ -1,7 +1,7 @@ --- date: 2021-02-25 title: Participation of DataPLANT at the E-Science-Tage -previewText: DataPLANT focusing on fundamental plant research presents itself in multiple fashion at the upcoming EST. We will give an overview on the Annotated Research Context (ARC), ongoing technical developments for a first set of annotation tools and our concept for the use of Data Stewards. We are also participating in the NFDI workshop and one of our infrastructure partners, bwSFS - Storage-for-Science, will also be along with a poster ... +description: DataPLANT focusing on fundamental plant research presents itself in multiple fashion at the upcoming EST. We will give an overview on the Annotated Research Context (ARC), ongoing technical developments for a first set of annotation tools and our concept for the use of Data Stewards. We are also participating in the NFDI workshop and one of our infrastructure partners, bwSFS - Storage-for-Science, will also be along with a poster ... --- DataPLANT focusing on fundamental plant research presents itself in multiple fashion at the upcoming [EST](https://e-science-tage.de/). We will give an overview on the **Annotated Research Context (ARC)**, ongoing technical developments for a first set of **annotation tools** and our concept for the use of **Data Stewards**. We are also participating in the NFDI workshop and one of our infrastructure partners, **bwSFS - Storage-for-Science**, will also be along with a poster. diff --git a/src/content/news/2021-03-02-DataPLANT-presented-at-the-NFDI-Talks-online-series.md b/src/content/news/2021-03-02-DataPLANT-presented-at-the-NFDI-Talks-online-series.md index 772c439b..379ef43c 100644 --- a/src/content/news/2021-03-02-DataPLANT-presented-at-the-NFDI-Talks-online-series.md +++ b/src/content/news/2021-03-02-DataPLANT-presented-at-the-NFDI-Talks-online-series.md @@ -1,7 +1,7 @@ --- date: 2021-03-02 title: DataPLANT presented at NFDI-Talks online series -previewText: DataPLANT presented in the second event of the NFDI Talks online series on considerations on project sustainability and community expansion as the total number of researchers covered by the NFDI in Germany should be steadily expanded in the course of the formation process. Additionally the consortia should provide concepts for a long-term perspective after the first funding phase. The ongoing procedures for the formation of new consortia as well as the activities within the already funded ... +description: DataPLANT presented in the second event of the NFDI Talks online series on considerations on project sustainability and community expansion as the total number of researchers covered by the NFDI in Germany should be steadily expanded in the course of the formation process. Additionally the consortia should provide concepts for a long-term perspective after the first funding phase. The ongoing procedures for the formation of new consortia as well as the activities within the already funded ... --- 📣 [Find the recordings here](https://www.youtube.com/watch?v=VTGhtQmn2p4) diff --git a/src/content/news/2021-03-09-DataPLANT-presented-at-E-Science-Tage.md b/src/content/news/2021-03-09-DataPLANT-presented-at-E-Science-Tage.md index fdac467e..e105bcbe 100644 --- a/src/content/news/2021-03-09-DataPLANT-presented-at-E-Science-Tage.md +++ b/src/content/news/2021-03-09-DataPLANT-presented-at-E-Science-Tage.md @@ -1,7 +1,7 @@ --- date: 2021-03-09 title: DataPLANT presented at E-Science-Tage -previewText: Once again, the E-Science Days were acomplete success. In addition to the other fortunate consortia that have successfully mastered the first round of funding, we were also present with numerous contributions. Benedikt Venn used his poster to explain what an ARC (Annotated Research Context) actually is. Jens Krüger, one of the co-speakers of DataPLANT went in his tech talk into more detail about the Metadata ToolChain, which is offered by DataPLANT up to now. Furthermore, our speaker Dirk ... +description: Once again, the E-Science Days were acomplete success. In addition to the other fortunate consortia that have successfully mastered the first round of funding, we were also present with numerous contributions. Benedikt Venn used his poster to explain what an ARC (Annotated Research Context) actually is. Jens Krüger, one of the co-speakers of DataPLANT went in his tech talk into more detail about the Metadata ToolChain, which is offered by DataPLANT up to now. Furthermore, our speaker Dirk ... --- Once again, the E-Science Days were acomplete success. In addition to the other fortunate consortia that have successfully mastered the first round of funding, we were also present with numerous contributions. Benedikt Venn [@BenediktVenn](https://twitter.com/BenediktVenn) used his poster to explain what an ARC (Annotated Research Context) actually is. diff --git a/src/content/news/2021-05-16-DataPLANT-will-engage-further-with-InvenioRDM-for-Data-Publication.md b/src/content/news/2021-05-16-DataPLANT-will-engage-further-with-InvenioRDM-for-Data-Publication.md index 779255e5..ce16e625 100644 --- a/src/content/news/2021-05-16-DataPLANT-will-engage-further-with-InvenioRDM-for-Data-Publication.md +++ b/src/content/news/2021-05-16-DataPLANT-will-engage-further-with-InvenioRDM-for-Data-Publication.md @@ -1,7 +1,7 @@ --- date: 2021-05-16 title: DataPLANT will engage further with InvenioRDM for Data Publication -previewText: DataPLANT envisions a much stronger role of data publications in the future. To provide the possibility of data publication, DataPLANT prepares to use InvenioRDM, a modern state-of-the-art framework. InvenioRDM is funded primarily through CERN’s using both structural funding as well as grant money. Invenio is a partners driven endeavor to answer data publication needs, and collaborating on InvenioRDM helps with a cheaper and better product. Collaboration-wise InvenioRDM works as an open collaboration without formal project agreements between partners ... +description: DataPLANT envisions a much stronger role of data publications in the future. To provide the possibility of data publication, DataPLANT prepares to use InvenioRDM, a modern state-of-the-art framework. InvenioRDM is funded primarily through CERN’s using both structural funding as well as grant money. Invenio is a partners driven endeavor to answer data publication needs, and collaborating on InvenioRDM helps with a cheaper and better product. Collaboration-wise InvenioRDM works as an open collaboration without formal project agreements between partners ... --- DataPLANT envisions a much stronger role of data publications in the future. To provide the possibility of data publication, DataPLANT prepares to use InvenioRDM, a modern state-of-the-art framework. [InvenioRDM](https://inveniosoftware.org/) is funded primarily through CERN’s using both structural funding as well as grant money. Invenio is a partners driven endeavor to answer data publication needs, and collaborating on InvenioRDM helps with a cheaper and better product. Collaboration-wise InvenioRDM works as an open collaboration without formal project agreements between partners. Instead, it relies on a governance and code of conduct as the basis for the collaboration. Legally, it requires that the source code is open source licensed and that contributors retain their copyright. Invenio is open to onboard new partners. DataPLANT plans to become a partner through Freiburg university and will commit resources to Invenio in form of two person-months focusing on testing, documentation, publication metadata, and outreach into the plant community. That [DataCite](https://datacite.org/) metadata schema is the core basis for the metadata model. Additionally, extensions for scientific metadata are possible. diff --git a/src/content/news/2021-05-24-NFDI-governance-General-assembly-of-the-association-and-the-election-of-the-scientific-board-members.md b/src/content/news/2021-05-24-NFDI-governance-General-assembly-of-the-association-and-the-election-of-the-scientific-board-members.md index cc5d43ed..87fd23c4 100644 --- a/src/content/news/2021-05-24-NFDI-governance-General-assembly-of-the-association-and-the-election-of-the-scientific-board-members.md +++ b/src/content/news/2021-05-24-NFDI-governance-General-assembly-of-the-association-and-the-election-of-the-scientific-board-members.md @@ -1,7 +1,7 @@ --- date: 2021-05-24 title: 'NFDI governance: General assembly of the association and the election of the scientific board members' -previewText: On Tuesday, June 29, 2021 from 10:00 am to 1:00 pm, the first general member assembly of the National Research Data Infrastructure association (NFDI e.V.) will take place as a virtual event. The objective of the meeting is to elect three scientific members for the Board of Trustees. The election procedure takes place as a general election. The members are entitled to propose persons for the election ... +description: On Tuesday, June 29, 2021 from 10:00 am to 1:00 pm, the first general member assembly of the National Research Data Infrastructure association (NFDI e.V.) will take place as a virtual event. The objective of the meeting is to elect three scientific members for the Board of Trustees. The election procedure takes place as a general election. The members are entitled to propose persons for the election ... --- On Tuesday, June 29, 2021 from 10:00 am to 1:00 pm, the first general member assembly of the National Research Data Infrastructure association (NFDI e.V.) will take place as a virtual event. The objective of the meeting is to elect three scientific members for the Board of Trustees. The election procedure takes place as a general election. The members are entitled to propose persons for the election. This means that members are entitled to nominate persons who participate in a funded consortium or are involved in a binding pre-application for a proposal in 2021, or a non-binding letter of intent to submit a proposal to the DFG in 2021. diff --git a/src/content/news/2021-06-02-Participation-in-the-upcoming-3rd-NFDI-conference-on-8th-July.md b/src/content/news/2021-06-02-Participation-in-the-upcoming-3rd-NFDI-conference-on-8th-July.md index 653a04f4..6eb27443 100644 --- a/src/content/news/2021-06-02-Participation-in-the-upcoming-3rd-NFDI-conference-on-8th-July.md +++ b/src/content/news/2021-06-02-Participation-in-the-upcoming-3rd-NFDI-conference-on-8th-July.md @@ -1,7 +1,7 @@ --- date: 2021-06-02 title: Participation in the upcoming 3rd NFDI conference on 8th July -previewText: DataPLANT will participate in the 3rd NFDI conference, held virtually on the **8th July**. The National Research Data Infrastructure (NFDI) is being established as a cooperative network of consortia over a three-year period (2019-2021) in three stages. DataPLANT was already successful in the first round. As part of the third round of calls, the third NFDI conference will be held in a virtual format on July 8 ... +description: DataPLANT will participate in the 3rd NFDI conference, held virtually on the **8th July**. The National Research Data Infrastructure (NFDI) is being established as a cooperative network of consortia over a three-year period (2019-2021) in three stages. DataPLANT was already successful in the first round. As part of the third round of calls, the third NFDI conference will be held in a virtual format on July 8 ... --- DataPLANT will participate in the [3rd NFDI conference](https://www.dfg.de/foerderung/info_wissenschaft/2021/info_wissenschaft_21_38/index.html), held virtually on the **8th July**. The [National Research Data Infrastructure (NFDI)](https://www.nfdi.de/) is being established as a cooperative network of consortia over a three-year period (2019-2021) in three stages. DataPLANT was already successful in the first round. As part of the third round of calls, the third NFDI conference will be held in a virtual format on July 8, 2021. diff --git a/src/content/news/2021-06-04-GCC2021-Registration-&-Programme.md b/src/content/news/2021-06-04-GCC2021-Registration-&-Programme.md index 24da5e04..7f516f62 100644 --- a/src/content/news/2021-06-04-GCC2021-Registration-&-Programme.md +++ b/src/content/news/2021-06-04-GCC2021-Registration-&-Programme.md @@ -1,7 +1,7 @@ --- date: 2021-06-04 title: GCC2021 Registration & Programme -previewText: DataPLANT is deeply involved with Galaxy as a workflow system and thus would like to advertise the upcoming Galaxy Community Conference. The early registration deadline for the 2021 event has been moved back to June 8. This gives you more time to take advantage of the 50% discount off full registration prices, so make sure you sign up now so you don't miss out. +description: DataPLANT is deeply involved with Galaxy as a workflow system and thus would like to advertise the upcoming Galaxy Community Conference. The early registration deadline for the 2021 event has been moved back to June 8. This gives you more time to take advantage of the 50% discount off full registration prices, so make sure you sign up now so you don't miss out. --- DataPLANT is deeply involved with Galaxy as a workflow system and thus would like to advertise the upcoming **Galaxy Community Conference**. The early registration deadline for the 2021 event has been moved back to **June 8**. This gives you more time to take advantage of the 50% discount off full registration prices, so make sure you [sign up now](https://www.vibconferences.be/events/gcc2021-virtual-edition#attendees) so you don't miss out. diff --git a/src/content/news/2021-06-08-DataPLANT-Ongoing-exchange-with-the-NFDI-and-other-consortia.md b/src/content/news/2021-06-08-DataPLANT-Ongoing-exchange-with-the-NFDI-and-other-consortia.md index 152fb3b2..856b3d9d 100644 --- a/src/content/news/2021-06-08-DataPLANT-Ongoing-exchange-with-the-NFDI-and-other-consortia.md +++ b/src/content/news/2021-06-08-DataPLANT-Ongoing-exchange-with-the-NFDI-and-other-consortia.md @@ -1,7 +1,7 @@ --- date: 2021-06-08 title: 'DataPLANT: Ongoing exchange with the NFDI and other consortia' -previewText: DataPLANT plans to cooperate tightly with the NFDI4BIOIMAGE initiative on imaging data handling. This consortium will apply to the 3rd Call for the NFDI in September. Their central objective is to serve the research community with respect to its research data management (RDM) needs in bioimaging, including microscopy, biophotonics and bioimage informatics. To help them assessing the current situation of RDM in bioimaging, they ask for participation in their anonymous NFDI4BIOIMAGE Community Survey ... +description: DataPLANT plans to cooperate tightly with the NFDI4BIOIMAGE initiative on imaging data handling. This consortium will apply to the 3rd Call for the NFDI in September. Their central objective is to serve the research community with respect to its research data management (RDM) needs in bioimaging, including microscopy, biophotonics and bioimage informatics. To help them assessing the current situation of RDM in bioimaging, they ask for participation in their anonymous NFDI4BIOIMAGE Community Survey ... --- DataPLANT plans to cooperate tightly with the [NFDI4BIOIMAGE](https://nfdi4bioimage.de/en/start/) initiative on imaging data handling. This consortium will apply to the 3rd Call for the NFDI in September. Their central objective is to serve the research community with respect to its research data management (RDM) needs in bioimaging, including microscopy, biophotonics and bioimage informatics. To help them assessing the current situation of RDM in bioimaging, they ask for participation in their anonymous [NFDI4BIOIMAGE Community Survey](https://nfdi4bioimage.de/en/survey/). They welcome contributions from all fields of research at all career levels including research support areas. After evaluation they plan to share the survey results openly with the public. diff --git a/src/content/news/2021-06-10-FAIR-together-Launching-the-Collaboration-between-the-NFDI-DataPLANT-and-the-HMC-Hub-Information.md b/src/content/news/2021-06-10-FAIR-together-Launching-the-Collaboration-between-the-NFDI-DataPLANT-and-the-HMC-Hub-Information.md index 9bf41d5d..97227cec 100644 --- a/src/content/news/2021-06-10-FAIR-together-Launching-the-Collaboration-between-the-NFDI-DataPLANT-and-the-HMC-Hub-Information.md +++ b/src/content/news/2021-06-10-FAIR-together-Launching-the-Collaboration-between-the-NFDI-DataPLANT-and-the-HMC-Hub-Information.md @@ -1,7 +1,7 @@ --- date: 2021-06-10 title: FAIR together – Launching the Collaboration between the NFDI DataPLANT and the HMC Hub Information -previewText: The mission of the Helmholtz Metadata Collaboration (HMC) platform and the National Research Data Infrastructure (NFDI) is to improve the findability (Findable), accessibility (Accessible), machine readability (Interoperable), and reusability (Re-usable) of research data across domains, with respect to the FAIR Principles. +description: The mission of the Helmholtz Metadata Collaboration (HMC) platform and the National Research Data Infrastructure (NFDI) is to improve the findability (Findable), accessibility (Accessible), machine readability (Interoperable), and reusability (Re-usable) of research data across domains, with respect to the FAIR Principles. --- The mission of the [Helmholtz Metadata Collaboration (HMC) platform](https://helmholtz-metadaten.de/de) and the [National Research Data Infrastructure (NFDI)](https://www.nfdi.de/) is to improve the findability (Findable), accessibility (Accessible), machine readability (Interoperable), and reusability (Re-usable) of research data across domains, with respect to the FAIR Principles. diff --git a/src/content/news/2021-06-15-Advancing-the-discussion-on-sustainable-financing.md b/src/content/news/2021-06-15-Advancing-the-discussion-on-sustainable-financing.md index e1c367e1..14f8dfff 100644 --- a/src/content/news/2021-06-15-Advancing-the-discussion-on-sustainable-financing.md +++ b/src/content/news/2021-06-15-Advancing-the-discussion-on-sustainable-financing.md @@ -1,7 +1,7 @@ --- date: 2021-06-15 title: Advancing the discussion on sustainable financing -previewText: DataPLANT got involved into furthering the discussion on sustainable financing via it's co-founding project BioDATEN. In Baden-Wuerttemberg the science data center activities are coordinated by a working group which held a meeting on business models to discuss options to establish sustainable support of research data management. Here, the insights of the NFDI and the state of considerations got presented by the DataPLANT speaker ... +description: DataPLANT got involved into furthering the discussion on sustainable financing via it's co-founding project BioDATEN. In Baden-Wuerttemberg the science data center activities are coordinated by a working group which held a meeting on business models to discuss options to establish sustainable support of research data management. Here, the insights of the NFDI and the state of considerations got presented by the DataPLANT speaker ... --- DataPLANT got involved into furthering the discussion on sustainable financing via it's co-founding project [BioDATEN](https://portal.biodaten.info/). In Baden-Wuerttemberg the science data center activities are coordinated by a working group which held a meeting on business models to discuss options to establish sustainable support of research data management. Here, the insights of the [NFDI](https://www.nfdi.de/) and the state of considerations got presented by the DataPLANT speaker. diff --git a/src/content/news/2021-06-22-Election-of-Dr-Dirk-von-Suchodoletz-as-spokesperson-of-the-consortium-according-to-the-statutes-of-NFDIeV.md b/src/content/news/2021-06-22-Election-of-Dr-Dirk-von-Suchodoletz-as-spokesperson-of-the-consortium-according-to-the-statutes-of-NFDIeV.md index d037167f..980e66a3 100644 --- a/src/content/news/2021-06-22-Election-of-Dr-Dirk-von-Suchodoletz-as-spokesperson-of-the-consortium-according-to-the-statutes-of-NFDIeV.md +++ b/src/content/news/2021-06-22-Election-of-Dr-Dirk-von-Suchodoletz-as-spokesperson-of-the-consortium-according-to-the-statutes-of-NFDIeV.md @@ -1,7 +1,7 @@ --- date: 2021-06-22 title: Election of Dr. Dirk von Suchodoletz as spokesperson of the consortium according to the statutes of NFDI e.V. -previewText: We are happy to announce that progress continues to be made regarding the NFDI e.V. As the first consortial assembly will take place at the end of July, we have elected our spokesperson of the DataPLANT consortium on association level last week. We will be represented by Dr. Dirk von Suchodoletz, who also acts as spokesperson for the DFG-funded consortium. Cristina Martins Rodrigues, DataPLANT's project leader, was elected as deputy ... +description: We are happy to announce that progress continues to be made regarding the NFDI e.V. As the first consortial assembly will take place at the end of July, we have elected our spokesperson of the DataPLANT consortium on association level last week. We will be represented by Dr. Dirk von Suchodoletz, who also acts as spokesperson for the DFG-funded consortium. Cristina Martins Rodrigues, DataPLANT's project leader, was elected as deputy ... --- We are happy to announce that progress continues to be made regarding the NFDI e.V. As the first consortial assembly will take place at the end of July, we have elected our spokesperson of the DataPLANT consortium on association level last week. We will be represented by Dr. Dirk von Suchodoletz, who also acts as spokesperson for the DFG-funded consortium. Cristina Martins Rodrigues, DataPLANT's project leader, was elected as deputy. diff --git a/src/content/news/2021-07-07-choosing-and-deploying-a-data-repository-for-dataplant.md b/src/content/news/2021-07-07-choosing-and-deploying-a-data-repository-for-dataplant.md index b6ae6f9a..f92e19b3 100644 --- a/src/content/news/2021-07-07-choosing-and-deploying-a-data-repository-for-dataplant.md +++ b/src/content/news/2021-07-07-choosing-and-deploying-a-data-repository-for-dataplant.md @@ -1,7 +1,7 @@ --- date: 2021-07-07 title: Choosing and deploying a data repository for DataPLANT -previewText: A service developer and administrator in DataPLANT Jonathan Bauer from the University of Freiburg gave a presentation on the current state of the deployment of InvenioRDM for the Science Data Center coordination working group on infrastructure. The Invenio repository software is getting production ready and will be deployed as a DataPLANT service for data publication. KeyCloak is providing authentication services and bwSFS ("storage-for-science" in Baden-Württemberg) offering the storage backend... +description: A service developer and administrator in DataPLANT Jonathan Bauer from the University of Freiburg gave a presentation on the current state of the deployment of InvenioRDM for the Science Data Center coordination working group on infrastructure. The Invenio repository software is getting production ready and will be deployed as a DataPLANT service for data publication. KeyCloak is providing authentication services and bwSFS ("storage-for-science" in Baden-Württemberg) offering the storage backend... --- A service developer and administrator in DataPLANT Jonathan Bauer from the University of Freiburg gave a presentation on the current state of the deployment of InvenioRDM for the Science Data Center coordination working group on infrastructure. The Invenio repository software is getting production ready and will be deployed as a DataPLANT service for data publication. KeyCloak is providing authentication services and bwSFS ("storage-for-science" in Baden-Württemberg) offering the storage backend (in the form of an object storage). At the moment the service installed as single instance but a Kubernetes cluster installation is envisioned in the long run to serve larger amount of data and users. Authentication in Invenio is possible via OpenID connect and OAuth, it offers built-in ORCID login. diff --git a/src/content/news/2021-07-23-dataplant-participating-in-the-first-nfdi-consortium-assembly.md b/src/content/news/2021-07-23-dataplant-participating-in-the-first-nfdi-consortium-assembly.md index 4685e120..1b2b1e49 100644 --- a/src/content/news/2021-07-23-dataplant-participating-in-the-first-nfdi-consortium-assembly.md +++ b/src/content/news/2021-07-23-dataplant-participating-in-the-first-nfdi-consortium-assembly.md @@ -1,7 +1,7 @@ --- date: 2021-07-23 title: DataPLANT participating in the first NFDI consortium assembly -previewText: Today the first meeting of the consortium assembly of the NFDI association took place online. In this meeting the nine initial consortia kicked off another integral part of the NFDI governance. A couple of important personnel decisions were made. The Chair (Christoph Steinbeck of NFDI4Chem) and Vice Chair (Dirk von Suchodoletz of DataPLANT) of the Consortium Assembly have been newly established. These two offices were not previously provided for in the articles of the NFDI Association, but were... +description: Today the first meeting of the consortium assembly of the NFDI association took place online. In this meeting the nine initial consortia kicked off another integral part of the NFDI governance. A couple of important personnel decisions were made. The Chair (Christoph Steinbeck of NFDI4Chem) and Vice Chair (Dirk von Suchodoletz of DataPLANT) of the Consortium Assembly have been newly established. These two offices were not previously provided for in the articles of the NFDI Association, but were... --- Today the first meeting of the consortium assembly of the NFDI association took place online. In this meeting the nine initial consortia kicked off another integral part of the NFDI governance. A couple of important personnel decisions were made. The Chair (Christoph Steinbeck of NFDI4Chem) and Vice Chair (Dirk von Suchodoletz of DataPLANT) of the Consortium Assembly have been newly established. These two offices were not previously provided for in the articles of the NFDI Association, but were deemed useful by the Consortium Assembly. They are to be defined in the rules of procedure of the body. diff --git a/src/content/news/2021-07-26-further-exchange-with-the-dfg-and-nfdi-directorate-on-further-community-integration-and-onboarding.md b/src/content/news/2021-07-26-further-exchange-with-the-dfg-and-nfdi-directorate-on-further-community-integration-and-onboarding.md index e18dbf05..3d7e3094 100644 --- a/src/content/news/2021-07-26-further-exchange-with-the-dfg-and-nfdi-directorate-on-further-community-integration-and-onboarding.md +++ b/src/content/news/2021-07-26-further-exchange-with-the-dfg-and-nfdi-directorate-on-further-community-integration-and-onboarding.md @@ -1,7 +1,7 @@ --- date: 2021-07-26 title: Further exchange with the DFG and NFDI directorate on future community integration and onboarding -previewText: To advance the understanding and developing its role DataPLANT exchanged ideas with Ms. Kerremans from the DFG and Mr. Sure-Vetter from the NFDI Association on future community integration and onboarding of new participants. The topics we had already talked about e.g. at the NFDI Infratalks were discussed further.... +description: To advance the understanding and developing its role DataPLANT exchanged ideas with Ms. Kerremans from the DFG and Mr. Sure-Vetter from the NFDI Association on future community integration and onboarding of new participants. The topics we had already talked about e.g. at the NFDI Infratalks were discussed further.... --- To advance the understanding and developing its role DataPLANT exchanged ideas with Ms. Kerremans from the DFG and Mr. Sure-Vetter from the NFDI Association on future community integration and onboarding of new participants. The topics we had already talked about e.g. at the [NFDI Infratalks](https://www.youtube.com/watch?v=VTGhtQmn2p4 "NFDI-Infratalk - Gedanken zu Community-Durchdringung und Nachhaltigkeit") were discussed further: long term development and sustainability of the NFDI and the onboarding process. DataPLANT was able to place some points and present ideas that need to be developed further step by step, e.g. by putting it into a strategy paper. In addition to it, there were aspects that still needed some thought/formulation and that should certainly be discussed: diff --git a/src/content/news/2021-07-28-dataplant-presented-in-a-nfdi-special-edition-of-bausteine-fdm.md b/src/content/news/2021-07-28-dataplant-presented-in-a-nfdi-special-edition-of-bausteine-fdm.md index 4392446b..000e0e24 100644 --- a/src/content/news/2021-07-28-dataplant-presented-in-a-nfdi-special-edition-of-bausteine-fdm.md +++ b/src/content/news/2021-07-28-dataplant-presented-in-a-nfdi-special-edition-of-bausteine-fdm.md @@ -1,7 +1,7 @@ --- date: 2021-07-28 title: DataPLANT presented in a NFDI special edition of Bausteine FDM -previewText: We are pleased to draw your attention to the new issue of the Open Access journal "Bausteine Forschungsdatenmanagement". In this special issue, various consortia of the first round in the National Research Data Infrastructure (NFDI) are presented. In cooperation with the Board of Directors of the NFDI, a booklet has been created in which consortia from the various disciplines introduce themselves and describe the tasks and challenges in the field of research data management... +description: We are pleased to draw your attention to the new issue of the Open Access journal "Bausteine Forschungsdatenmanagement". In this special issue, various consortia of the first round in the National Research Data Infrastructure (NFDI) are presented. In cooperation with the Board of Directors of the NFDI, a booklet has been created in which consortia from the various disciplines introduce themselves and describe the tasks and challenges in the field of research data management... --- We are pleased to draw your attention to the new issue of the Open Access journal ["Bausteine Forschungsdatenmanagement"](https://bausteine-fdm.de/ "Bausteine FDM"). In this special issue, various consortia of the first round in the National Research Data Infrastructure (NFDI) are presented. In cooperation with the Board of Directors of the NFDI, a booklet has been created in which consortia from the various disciplines introduce themselves and describe the tasks and challenges in the field of research data management. All contributions are available [online](https://bausteine-fdm.de/issue/view/254 "2nd Edition - BausteineFDM"), the contribution on DataPLANT is linked [here](https://bausteine-fdm.de/article/view/8335 "DataPLANT – Ein NFDI-Konsortium der Pflanzen-Grundlagenforschung"). diff --git a/src/content/news/2021-08-11-arc-hackathon-ahead.md b/src/content/news/2021-08-11-arc-hackathon-ahead.md index ac269cf6..359646cd 100644 --- a/src/content/news/2021-08-11-arc-hackathon-ahead.md +++ b/src/content/news/2021-08-11-arc-hackathon-ahead.md @@ -1,7 +1,7 @@ --- date: 2021-08-11 title: ARC-Hackathon ahead -previewText: Dear DataPLANT Enthusiasts, since the beginning of our project, a lot has happened, always with the goal to improve the Annotated Research Context (ARC) as a FAIR Digital Object. To increase usability, we would like to invite you, the smart minds behind DataPLANT. Together we want to build, use or support ARCs with new tools, templates and ideas... +description: Dear DataPLANT Enthusiasts, since the beginning of our project, a lot has happened, always with the goal to improve the Annotated Research Context (ARC) as a FAIR Digital Object. To increase usability, we would like to invite you, the smart minds behind DataPLANT. Together we want to build, use or support ARCs with new tools, templates and ideas... --- ![ARC-Hackathon Invitation](/src/assets/images/news/Invitation.svg "ARC-Hackathon Invitation") \ No newline at end of file diff --git a/src/content/news/2021-08-26-packaging-research-artefacts-with-ro-crate.md b/src/content/news/2021-08-26-packaging-research-artefacts-with-ro-crate.md index f783f5a1..45775791 100644 --- a/src/content/news/2021-08-26-packaging-research-artefacts-with-ro-crate.md +++ b/src/content/news/2021-08-26-packaging-research-artefacts-with-ro-crate.md @@ -1,7 +1,7 @@ --- date: 2021-08-26 title: Packaging research artefacts with RO-Crate -previewText: Dear DataPLANT Enthusiasts, since the beginning of our project, a lot has happened, always with the goal to improve the Annotated Research Context (ARC) as a FAIR Digital Object. To increase usability, we would like to invite you, the smart minds behind DataPLANT. Together we want to build, use or support ARCs with new tools, templates and ideas... +description: Dear DataPLANT Enthusiasts, since the beginning of our project, a lot has happened, always with the goal to improve the Annotated Research Context (ARC) as a FAIR Digital Object. To increase usability, we would like to invite you, the smart minds behind DataPLANT. Together we want to build, use or support ARCs with new tools, templates and ideas... --- In DataPLANT a working group formed to define a specification of an outline and packaging of research data and its context. This group worked on the [specification of the Annotated Research Context (ARC)](https://github.com/nfdi4plants/ARC-specification/blob/main/ARC%20specification.md "ARC Specification") which will get finalized for the version 1.0 at the upcoming ARC hackathon beginning of September. This aligns well with the proclaimed objectives of DataPLANT regarding to the goals of research data management (RDM). The ARC builds on and implements existing standards like ISA for administrative and experimental metadata and CWL for analysis and workflow metadata. They are designed to represent digital objects that fulfill all FAIR principles and are therefore referred to as FAIR Digital Objects (FDO). diff --git a/src/content/news/2021-09-08-DataPLANT-Governance-SMB.md b/src/content/news/2021-09-08-DataPLANT-Governance-SMB.md index c9704623..557d6661 100644 --- a/src/content/news/2021-09-08-DataPLANT-Governance-SMB.md +++ b/src/content/news/2021-09-08-DataPLANT-Governance-SMB.md @@ -1,7 +1,7 @@ --- date: 2021-09-08 title: 'DataPLANT Governance: Senior Management Board Meeting' -previewText: On Wednesday, September 08, 2021 the senior management (SMB) board met again to discuss the current status of the project after pretty much one year of DataPLANT. The SMB's objective is the oversight of the general developments, interaction with other consortia and the general NFDI. It takes care of the strategy and standards development and suggests consortium members as experts for the relevant working groups. This meeting's agenda informed on the newly formed NFDI association and its vision, discussed aspects of community integration and public relations... +description: On Wednesday, September 08, 2021 the senior management (SMB) board met again to discuss the current status of the project after pretty much one year of DataPLANT. The SMB's objective is the oversight of the general developments, interaction with other consortia and the general NFDI. It takes care of the strategy and standards development and suggests consortium members as experts for the relevant working groups. This meeting's agenda informed on the newly formed NFDI association and its vision, discussed aspects of community integration and public relations... --- On Wednesday, September 08, 2021 the senior management (SMB) board met again to discuss the current status of the project after pretty much one year of diff --git a/src/content/news/2021-09-08-first-ever-hackathon.md b/src/content/news/2021-09-08-first-ever-hackathon.md index 8bf06f1c..b3027668 100644 --- a/src/content/news/2021-09-08-first-ever-hackathon.md +++ b/src/content/news/2021-09-08-first-ever-hackathon.md @@ -1,7 +1,7 @@ --- date: 2021-09-08 title: First ever ARC Hackathon -previewText: 'From 6th to 8th September DataPLANT scientists of the different Task Areas came together at Villa Denis in Frankenstein to continue their work on improving DataPLANTs solution for FAIR data. the Annotated Research Context and its associated tools and services. During the three-day event, the data experts tackled four essential topics.' +description: 'From 6th to 8th September DataPLANT scientists of the different Task Areas came together at Villa Denis in Frankenstein to continue their work on improving DataPLANTs solution for FAIR data. the Annotated Research Context and its associated tools and services. During the three-day event, the data experts tackled four essential topics.' --- From 6th to 8th September DataPLANT scientists of the different Task Areas came together at Villa Denis in Frankenstein to continue their work on improving DataPLANTs solution for FAIR data: the Annotated Research Context and its associated tools and services. diff --git a/src/content/news/2021-09-16-preliminary-report-discussion-and-considerations-on-arc-based-data-versioning-and-sharing.md b/src/content/news/2021-09-16-preliminary-report-discussion-and-considerations-on-arc-based-data-versioning-and-sharing.md index 6b59191c..3c556a35 100644 --- a/src/content/news/2021-09-16-preliminary-report-discussion-and-considerations-on-arc-based-data-versioning-and-sharing.md +++ b/src/content/news/2021-09-16-preliminary-report-discussion-and-considerations-on-arc-based-data-versioning-and-sharing.md @@ -1,7 +1,7 @@ --- date: 2021-09-16 title: Preliminary report - Discussion and considerations on ARC based data versioning and sharing -previewText: In DataPLANT a working group formed to define a specification of the Annotated Research Context (ARC) and the necessary backend infrastructure for actual data versioning and sharing. This group looks into code repositories as typical processes found in software development align well to the goals of research data management (RDM)... +description: In DataPLANT a working group formed to define a specification of the Annotated Research Context (ARC) and the necessary backend infrastructure for actual data versioning and sharing. This group looks into code repositories as typical processes found in software development align well to the goals of research data management (RDM)... --- In DataPLANT a working group formed to define a specification of the Annotated Research Context (ARC) and the necessary backend infrastructure for actual data versioning and sharing. This group looks into code repositories as typical processes found in software development align well to the goals of research data management (RDM). diff --git a/src/content/news/2021-09-30-make-a-september-to-remember.md b/src/content/news/2021-09-30-make-a-september-to-remember.md index 8e7386d0..70ddfc51 100644 --- a/src/content/news/2021-09-30-make-a-september-to-remember.md +++ b/src/content/news/2021-09-30-make-a-september-to-remember.md @@ -1,7 +1,7 @@ --- date: 2021-09-30 title: Make a september to remember -previewText: This September has been a busy month for the DataPLANT team. It started with a trip by our project coordinator Cristina Martins Rodrigues to the Chlamy 2020+1. This is a biennial meeting of all groups working on Chlamydomonas reinhardtii. For the experts on the green alga, the RDM is also an important endeavour to act FAIR. +description: This September has been a busy month for the DataPLANT team. It started with a trip by our project coordinator Cristina Martins Rodrigues to the Chlamy 2020+1. This is a biennial meeting of all groups working on Chlamydomonas reinhardtii. For the experts on the green alga, the RDM is also an important endeavour to act FAIR. --- This September has been a busy month for the DataPLANT team. It started with a trip by our project coordinator [Cristina Martins Rodrigues](https://twitter.com/C_MRodrigues) to the [Chlamy 2020+1](https://chlamy2020.sciencesconf.org/). This is a biennial meeting of all groups working on *Chlamydomonas reinhardtii*. For the experts on the green alga, the RDM is also an important endeavour to act FAIR. diff --git a/src/content/news/2021-10-01-governance-in-dataplant-year-one-review-in-trifels.md b/src/content/news/2021-10-01-governance-in-dataplant-year-one-review-in-trifels.md index 9b87bf73..0e482462 100644 --- a/src/content/news/2021-10-01-governance-in-dataplant-year-one-review-in-trifels.md +++ b/src/content/news/2021-10-01-governance-in-dataplant-year-one-review-in-trifels.md @@ -1,7 +1,7 @@ --- date: 2021-10-01 title: Governance in DataPLANT - Year one review in Trifels -previewText: Fortunately the pandemic situation allowed for a three day in-person meeting for a review of DataPLANT after year one. As other consortia we were not able to completely staff all posts by then and needed to review the work plan to adapt to ongoing developments and insights gathered over the first year. Thus we reviewed of basic infrastructure considerations and adhered to the feedback from the Senior Management Board meeting to emphasize the priority of community services... +description: Fortunately the pandemic situation allowed for a three day in-person meeting for a review of DataPLANT after year one. As other consortia we were not able to completely staff all posts by then and needed to review the work plan to adapt to ongoing developments and insights gathered over the first year. Thus we reviewed of basic infrastructure considerations and adhered to the feedback from the Senior Management Board meeting to emphasize the priority of community services... --- Fortunately the pandemic situation allowed for a three day in-person meeting for a review of DataPLANT after year one. As other consortia we were not able to completely staff all posts by then and needed to review the work plan to adapt to ongoing developments and insights gathered over the first year. Thus we reviewed of basic infrastructure considerations and adhered to the feedback from the Senior Management Board meeting to emphasize the priority of community services. In terms of the project's mid-term review we decided to focus on the specific assets and highlights of the project. First working tools and services evolved around metadata annotation and DataPLANT ontology development through Swate and Swobup. The tools around Swate/Swobup need a stable infrastructure when promotion of the services to the community picks up speed. The ARC specification is under way and GitLab is getting thoroughly tested. Insights regarding typical workflows in the community were gathered and applied to storage and processing of data (to offer both local, on-premise and cloud storage). diff --git a/src/content/news/2021-10-07-dataplant-governance-tb.md b/src/content/news/2021-10-07-dataplant-governance-tb.md index 895be1c8..3806eef5 100644 --- a/src/content/news/2021-10-07-dataplant-governance-tb.md +++ b/src/content/news/2021-10-07-dataplant-governance-tb.md @@ -1,7 +1,7 @@ --- date: 2021-10-07 title: 'DataPLANT-Governance: Technical Board Meeting' -previewText: The various service and workflow developments as well as suggestions for the infrastructure operation are overseen by the technical board to ensure a structured evolotion of the implementation of the DataPLANT vision and FAIR principles. After one year of DataPLANT a review of the basic infrastructure and adaptation of the strategy according to the experiences made took place. Modular services are envisioned, ... +description: The various service and workflow developments as well as suggestions for the infrastructure operation are overseen by the technical board to ensure a structured evolotion of the implementation of the DataPLANT vision and FAIR principles. After one year of DataPLANT a review of the basic infrastructure and adaptation of the strategy according to the experiences made took place. Modular services are envisioned, ... --- The various service and workflow developments as well as suggestions for the infrastructure operation are overseen by the technical board to ensure a structured evolotion of the implementation of the DataPLANT vision and FAIR principles. After one year of DataPLANT a review of the diff --git a/src/content/news/2021-11-08-dataplant-tools-and-services-development-principles.md b/src/content/news/2021-11-08-dataplant-tools-and-services-development-principles.md index 2ff37c05..c1c82cac 100644 --- a/src/content/news/2021-11-08-dataplant-tools-and-services-development-principles.md +++ b/src/content/news/2021-11-08-dataplant-tools-and-services-development-principles.md @@ -1,7 +1,7 @@ --- date: 2021-11-08 title: DataPLANT tools and services development principles -previewText: Developing applications and tools that support community-driven research data management requires the engagement of various stakeholders. Software development principles provide high-level guidelines and a collection of considerations to create sought after and maintainable applications and services. In DataPLANT, tool development is always motivated by community requirements conveyed by researchers e.g. through data stewards to developers. The objective in DataPLANT is to provide incremental but regular improvements of the RDM procedures... +description: Developing applications and tools that support community-driven research data management requires the engagement of various stakeholders. Software development principles provide high-level guidelines and a collection of considerations to create sought after and maintainable applications and services. In DataPLANT, tool development is always motivated by community requirements conveyed by researchers e.g. through data stewards to developers. The objective in DataPLANT is to provide incremental but regular improvements of the RDM procedures... --- Developing applications and tools that support community-driven research data management requires the engagement of various stakeholders. Software development principles provide high-level guidelines and a collection of considerations to create sought after and maintainable applications and services. In DataPLANT, tool development is always motivated by community requirements conveyed by researchers e.g. through data stewards to developers. The objective in DataPLANT is to provide incremental but regular improvements of the RDM procedures. Developing applications and tools that support community-driven research data management requires the engagement of various stakeholders. Software development principles provide high-level guidelines and a collection of considerations to create sought after and maintainable applications and services. In DataPLANT, tool development is always motivated by community requirements conveyed by researchers e.g. through data stewards to developers. The objective in DataPLANT is to provide incremental but regular improvements of the RDM procedures. diff --git a/src/content/news/2021-12-20-dataplant-wishes-a-merry-christmas.md b/src/content/news/2021-12-20-dataplant-wishes-a-merry-christmas.md index bfb4ebe0..f4c4829a 100644 --- a/src/content/news/2021-12-20-dataplant-wishes-a-merry-christmas.md +++ b/src/content/news/2021-12-20-dataplant-wishes-a-merry-christmas.md @@ -1,7 +1,7 @@ --- date: 2021-12-20 title: DataPLANT wishes a Merry Christmas -previewText: 🎄❄️🎅 +description: 🎄❄️🎅 --- ![DataPLANT wishes a Merry Christmas](/src/assets/images/news/christmas2021.png "DataPLANT wishes a Merry Christmas"){width=50%} \ No newline at end of file diff --git a/src/content/news/2022-01-14-consortium-assembly-of-the-nfdi-ev.md b/src/content/news/2022-01-14-consortium-assembly-of-the-nfdi-ev.md index 432fa2ff..0eb30a99 100644 --- a/src/content/news/2022-01-14-consortium-assembly-of-the-nfdi-ev.md +++ b/src/content/news/2022-01-14-consortium-assembly-of-the-nfdi-ev.md @@ -1,7 +1,7 @@ --- date: 2022-01-14 title: Consortium Assembly of the NFDI e.V. -previewText: On the 14th January 2022, the elected spokespersons met for the consortium meeting of the National Research Data Infrastructure (NFDI) e.V. association in accordance with the statutes. The meeting took place as a web conference. After welcome and agreement to the agenda, admission of guests and the acceptance of the rules of procedure, the discussion of the consortium guidelines and discussion and resolution on the statement on basic services... +description: On the 14th January 2022, the elected spokespersons met for the consortium meeting of the National Research Data Infrastructure (NFDI) e.V. association in accordance with the statutes. The meeting took place as a web conference. After welcome and agreement to the agenda, admission of guests and the acceptance of the rules of procedure, the discussion of the consortium guidelines and discussion and resolution on the statement on basic services... --- On the 14th January 2022, the elected spokespersons met for the consortium meeting of the National Research Data Infrastructure (NFDI) e.V. association in accordance with the statutes. The meeting took place as a web conference. After welcome and agreement to the agenda, admission of guests and the acceptance of the rules of procedure, the discussion of the consortium guidelines and discussion and resolution on the statement on basic services took the main part of the meeting time. diff --git a/src/content/news/2022-01-17-statement-of-the-assembly-of-the-nfdi-consortia-on-basic-services.md b/src/content/news/2022-01-17-statement-of-the-assembly-of-the-nfdi-consortia-on-basic-services.md index ee49a7d9..9dfeeb03 100644 --- a/src/content/news/2022-01-17-statement-of-the-assembly-of-the-nfdi-consortia-on-basic-services.md +++ b/src/content/news/2022-01-17-statement-of-the-assembly-of-the-nfdi-consortia-on-basic-services.md @@ -1,7 +1,7 @@ --- date: 2022-01-17 title: Statement of the assembly of the NFDI consortia on basic services -previewText: At the consortium meeting of the National Research Data Infrastructure (NFDI) association on January 14, DataPLANT among the consortia represented therein approved the publication of a joint statement on the relevance and success criteria of basic services. Basic service may develop into one of the pillars of the future joint scientific infrastructure for research data management overarching various fields in science... +description: At the consortium meeting of the National Research Data Infrastructure (NFDI) association on January 14, DataPLANT among the consortia represented therein approved the publication of a joint statement on the relevance and success criteria of basic services. Basic service may develop into one of the pillars of the future joint scientific infrastructure for research data management overarching various fields in science... --- At the consortium meeting of the National Research Data Infrastructure (NFDI) association on January 14, DataPLANT among the consortia represented therein approved the publication of a [joint statement on the relevance and success criteria of basic services](https://zenodo.org/record/6091657#.Yg0ulIiZPe9 "Stellungnahme der NFDI-Konsortien zu Basisdiensten"). Basic service may develop into one of the pillars of the future joint scientific infrastructure for research data management overarching various fields in science. diff --git a/src/content/news/2022-01-18-iso27001-certification-of-dataplant-infrastructure.md b/src/content/news/2022-01-18-iso27001-certification-of-dataplant-infrastructure.md index 6903f22f..9983b5c0 100644 --- a/src/content/news/2022-01-18-iso27001-certification-of-dataplant-infrastructure.md +++ b/src/content/news/2022-01-18-iso27001-certification-of-dataplant-infrastructure.md @@ -1,7 +1,7 @@ --- date: 2022-01-18 title: ISO27001 certification of DataPLANT infrastructure -previewText: Some research areas in the scope of the DataPLANT also touch the topic of sensible data. The compute centres at the universities in Freiburg and Tübingen therefor implemented a management system for information security for their de.NBI Cloud infrastructures including its certification. These infrastructures also serve DataPLANT and all of its services... +description: Some research areas in the scope of the DataPLANT also touch the topic of sensible data. The compute centres at the universities in Freiburg and Tübingen therefor implemented a management system for information security for their de.NBI Cloud infrastructures including its certification. These infrastructures also serve DataPLANT and all of its services... --- Some research areas in the scope of the DataPLANT also touch the topic of sensible data. The compute centres at the universities in Freiburg and Tübingen therefor implemented a management system for information security for their de.NBI Cloud infrastructures including its certification. These infrastructures also serve DataPLANT and all of its services. The complex and tedious certification process requires the commitment of various stakeholders. Fortunately, the BMBF allowed through the de.NBI project for a two-year grant to pursue an ISO27001 certification. The final certificate will be awarded in January 2022. The certification process is a long-term commitment which has to be repeated in regular intervals. A certified infrastructure will help researchers in DataPLANT and beyond to pursue research projects dealing with sensible data. diff --git a/src/content/news/2022-01-25-wrap-up-session-of-2nd-arc-hackathon.md b/src/content/news/2022-01-25-wrap-up-session-of-2nd-arc-hackathon.md index 6cb20bbc..f08c3a61 100644 --- a/src/content/news/2022-01-25-wrap-up-session-of-2nd-arc-hackathon.md +++ b/src/content/news/2022-01-25-wrap-up-session-of-2nd-arc-hackathon.md @@ -1,7 +1,7 @@ --- date: 2022-01-25 title: Wrap-up session of 2nd ARC Hackathon -previewText: Today, 24 of DataPLANT developers and researchers came together to discuss the progress they made during the latest Hackathon on the Annotated Research Context and its associated tools and services, which took place from 14th to 16th December. In the four-hour event, all participants had the chance to present their key findings or projects that evolved since then in a five-minute talk, followed by quick discussion. The presentations proved to be extremely lively, as some developers chose an interactive live demonstration to showcase their latest tools... +description: Today, 24 of DataPLANT developers and researchers came together to discuss the progress they made during the latest Hackathon on the Annotated Research Context and its associated tools and services, which took place from 14th to 16th December. In the four-hour event, all participants had the chance to present their key findings or projects that evolved since then in a five-minute talk, followed by quick discussion. The presentations proved to be extremely lively, as some developers chose an interactive live demonstration to showcase their latest tools... --- Today, 24 of DataPLANT developers and researchers came together to discuss the progress they made during the latest Hackathon on the [Annotated Research Context](https://github.com/nfdi4plants/ARC-specification/blob/main/ARC%20specification.md "ARC Specification") and its associated tools and services, which took place from 14th to 16th December. In the four-hour event, all participants had the chance to present their key findings or projects that evolved since then in a five-minute talk, followed by quick discussion. The presentations proved to be extremely lively, as some developers chose an interactive live demonstration to showcase their latest tools. diff --git a/src/content/news/2022-03-23-dataplant-introduced-fair-principles-for-management-of-research-data-to-the-department-of-plant-physiology-at-the-tuk.md b/src/content/news/2022-03-23-dataplant-introduced-fair-principles-for-management-of-research-data-to-the-department-of-plant-physiology-at-the-tuk.md index 0768313a..7674c48a 100644 --- a/src/content/news/2022-03-23-dataplant-introduced-fair-principles-for-management-of-research-data-to-the-department-of-plant-physiology-at-the-tuk.md +++ b/src/content/news/2022-03-23-dataplant-introduced-fair-principles-for-management-of-research-data-to-the-department-of-plant-physiology-at-the-tuk.md @@ -1,7 +1,7 @@ --- date: 2022-03-23 title: DataPLANT introduced FAIR principles for management of reasearch data to the department of Plant Physiology at the TU Kaiserslautern -previewText: Our manager Cristina Martins Rodrigues, herself formerly part of the working group, took the opportunity of having a new large data set to present the FAIR principles and the relevance of research data management to the Plant Physiology Department at the TU kaiserslautern. Subsequently, the audience was given a Quickstart on how to use the tools developed in DataPLANT to familiarize themselves with the topic using their own data as an example. A further meeting has already taken place... +description: Our manager Cristina Martins Rodrigues, herself formerly part of the working group, took the opportunity of having a new large data set to present the FAIR principles and the relevance of research data management to the Plant Physiology Department at the TU kaiserslautern. Subsequently, the audience was given a Quickstart on how to use the tools developed in DataPLANT to familiarize themselves with the topic using their own data as an example. A further meeting has already taken place... --- Our manager Cristina Martins Rodrigues, herself formerly part of the working group, took the opportunity of having a new large data set to present the FAIR principles and the relevance of research data management to the [Plant Physiology Department](https://www.bio.uni-kl.de/pflanzenphysiologie "Plant Physiology Department") at the [TU kaiserslautern](https://www.uni-kl.de/ "TU Kaiserslautern"). Subsequently, the audience was given a Quickstart on how to use the tools developed in DataPLANT to familiarize themselves with the topic using their own data as an example. A further meeting has already taken place, in which bottle necks were identified together. In addition, further questions could be clarified in this round. diff --git a/src/content/news/2022-03-24-participation-in-the-letter-of-intent-of-the-base4nfdi-initiative.md b/src/content/news/2022-03-24-participation-in-the-letter-of-intent-of-the-base4nfdi-initiative.md index 84cb2991..0a49f3c7 100644 --- a/src/content/news/2022-03-24-participation-in-the-letter-of-intent-of-the-base4nfdi-initiative.md +++ b/src/content/news/2022-03-24-participation-in-the-letter-of-intent-of-the-base4nfdi-initiative.md @@ -1,7 +1,7 @@ --- date: 2022-03-24 title: Participation in the Letter-of-Intent of the Base4NFDI initiative -previewText: DataPLANT joined beside the other NFDI consortia the Base4NFDI initiative on base services. It sees itself in a potential role as an incubator for RDM tools and services motivated by the needs of the fundamental plant research community. In DataPLANT, requirement profiles are created in the form of usable prototypes that are further developed in an agile and interactive process in exchange with the professional community. The resulting focus of DataPLANT is on the joint design and development of these tools and services, with the following emphasis ... +description: DataPLANT joined beside the other NFDI consortia the Base4NFDI initiative on base services. It sees itself in a potential role as an incubator for RDM tools and services motivated by the needs of the fundamental plant research community. In DataPLANT, requirement profiles are created in the form of usable prototypes that are further developed in an agile and interactive process in exchange with the professional community. The resulting focus of DataPLANT is on the joint design and development of these tools and services, with the following emphasis ... --- DataPLANT joined beside the other NFDI consortia the Base4NFDI initiative on base services. It sees itself in a potential role as an incubator for RDM tools and services motivated by the needs of the fundamental plant research community. In DataPLANT, requirement profiles are created in the form of usable prototypes that are further developed in an agile and interactive process in exchange with the professional community. The resulting focus of DataPLANT is on the joint design and development of these tools and services, having the following emphasis: Metadata annotation tooling, ontology extension and update service, data integration and structuring focusing on the ARC (annotated research context), data versioning and sharing (GitLab for data sets, InvenioRDM for data publication). The participants in DataPLANT bring in expertise in federated cloud- and storage services as well as in redeployable, reproducible services. Further contribution could be brought in on long-term access to deprecated software environments (for reproducibility and re-use; Emulation-as-a-Service cloud component to complement repository services as a federated component), AAI (working with KeyCloak and multi AAI setups). diff --git a/src/content/news/2022-03-25-overarching-activities-of-dataplant-in-the-evolvement-of-the-nfdi.md b/src/content/news/2022-03-25-overarching-activities-of-dataplant-in-the-evolvement-of-the-nfdi.md index b076cd16..c5d95ff4 100644 --- a/src/content/news/2022-03-25-overarching-activities-of-dataplant-in-the-evolvement-of-the-nfdi.md +++ b/src/content/news/2022-03-25-overarching-activities-of-dataplant-in-the-evolvement-of-the-nfdi.md @@ -1,7 +1,7 @@ --- date: 2022-03-25 title: Overarching activities of DataPLANT in the evolvement of the NFDI -previewText: With the completed onboarding of the second round of NFDI consortia the activities within the various bodies of the NFDI Associationare significantly on the rise and DataPLANT is getting more deeply involved in NFDI activities than originally foreseen. Activities are required in several fields starting from contributions to the four (later more) sections of the NFDI, providing input to various topics like DSI/Nagoya or cooperation with other NFDI consortia and contribution to the NFDI as a whole... +description: With the completed onboarding of the second round of NFDI consortia the activities within the various bodies of the NFDI Associationare significantly on the rise and DataPLANT is getting more deeply involved in NFDI activities than originally foreseen. Activities are required in several fields starting from contributions to the four (later more) sections of the NFDI, providing input to various topics like DSI/Nagoya or cooperation with other NFDI consortia and contribution to the NFDI as a whole... --- With the completed onboarding of the second round of NFDI consortia the activities within the various bodies of the [NFDI Association](https://nfdi.de) are significantly on the rise and DataPLANT is getting more deeply involved in NFDI activities than originally foreseen. Activities are required in several fields starting from contributions to the four (later more) sections of the NFDI, providing input to various topics like DSI/Nagoya or cooperation with other NFDI consortia and contribution to the NFDI as a whole. diff --git a/src/content/news/2022-04-01-assembly-of-the-consortia-in-the-NFDI-on-1st-April copy.md b/src/content/news/2022-04-01-assembly-of-the-consortia-in-the-NFDI-on-1st-April copy.md index 6c71a790..bef3fa80 100644 --- a/src/content/news/2022-04-01-assembly-of-the-consortia-in-the-NFDI-on-1st-April copy.md +++ b/src/content/news/2022-04-01-assembly-of-the-consortia-in-the-NFDI-on-1st-April copy.md @@ -1,7 +1,7 @@ --- date: 2022-04-01 title: Assembly of the consortia in the NFDI on 1st April -previewText: As part of the governance of the NFDI Association quarterly assembly of the NFDI consortia (1st and 2nd round, 19 consortia in total) took place online. Before heading to the most significant topic of the state of the Base4NFDI grant application new (co-)heads of the assembly got elected. Andreas Witt of Text+ was proposed for the speaker role, Dirk von Suchodoletz of DataPLANT stood for (re-)election as co-speaker for this body. Both got elected for the coming two years... +description: As part of the governance of the NFDI Association quarterly assembly of the NFDI consortia (1st and 2nd round, 19 consortia in total) took place online. Before heading to the most significant topic of the state of the Base4NFDI grant application new (co-)heads of the assembly got elected. Andreas Witt of Text+ was proposed for the speaker role, Dirk von Suchodoletz of DataPLANT stood for (re-)election as co-speaker for this body. Both got elected for the coming two years... --- As part of the governance of the [NFDI Association](https://www.nfdi.de/verein/) the quarterly assembly of the [NFDI consortia](https://www.nfdi.de/konsortien/) (1st and 2nd round, 19 consortia in total) took place online. Before heading to the most significant topic of the state of the Base4NFDI grant application new (co-)heads of the assembly got elected. Andreas Witt of Text+ was proposed for the speaker role, Dirk von Suchodoletz of DataPLANT stood for (re-)election as co-speaker for this body. Both got elected for the coming two years. diff --git a/src/content/news/2022-04-25-several-papers-published-in-the-E-Science-Days-2021-conference-proceedings.md b/src/content/news/2022-04-25-several-papers-published-in-the-E-Science-Days-2021-conference-proceedings.md index 20d9dfde..bbffd49b 100644 --- a/src/content/news/2022-04-25-several-papers-published-in-the-E-Science-Days-2021-conference-proceedings.md +++ b/src/content/news/2022-04-25-several-papers-published-in-the-E-Science-Days-2021-conference-proceedings.md @@ -1,7 +1,7 @@ --- date: 2022-04-25 title: Several papers published in the E-Science Days 2021 conference proceedings -previewText: DataPLANT participated in last year's E-Science Days 2021 in various forms. We provided an overview on the Annotated Research Context (ARC), ongoing technical developments for an initial set of annotation tools, and our approach to the use of data stewards. We also participated in the NFDI workshop and one of our infrastructure partners, bwSFS - Storage-for-Science, was also present with a poster... +description: DataPLANT participated in last year's E-Science Days 2021 in various forms. We provided an overview on the Annotated Research Context (ARC), ongoing technical developments for an initial set of annotation tools, and our approach to the use of data stewards. We also participated in the NFDI workshop and one of our infrastructure partners, bwSFS - Storage-for-Science, was also present with a poster... --- DataPLANT participated in last year's [E-Science Days 2021](https://e-science-tage.de/de/startseite_2021) in various forms. We provided an overview on the **Annotated Research Context (ARC)**, ongoing technical developments for an initial set of **annotation tools**, and our approach to the use of **Data Stewards**. We also participated in the NFDI workshop and one of our infrastructure partners, **bwSFS - Storage-for-Science**, was also present with a poster. diff --git a/src/content/news/2022-04-29-dataplant-participates-in-base4nfdi.md b/src/content/news/2022-04-29-dataplant-participates-in-base4nfdi.md index 508b0af1..ab1a0dfe 100644 --- a/src/content/news/2022-04-29-dataplant-participates-in-base4nfdi.md +++ b/src/content/news/2022-04-29-dataplant-participates-in-base4nfdi.md @@ -1,7 +1,7 @@ --- date: 2022-04-29 title: DataPLANT participates in Base4NFDI -previewText: From the very beginning, the National Infrastructure has been dedicated to the common topics spanning all consortia. At the beginning, common cross-cutting topics were agreed upon in a meeting in Berlin. Subsequently, based on this, four sections were established by the Scientific Senate on 1.10.2021. The following sections have been launched... +description: From the very beginning, the National Infrastructure has been dedicated to the common topics spanning all consortia. At the beginning, common cross-cutting topics were agreed upon in a meeting in Berlin. Subsequently, based on this, four sections were established by the Scientific Senate on 1.10.2021. The following sections have been launched... --- From the very beginning, the National Infrastructure has been dedicated to the common topics spanning all consortia. At the beginning, common [cross-cutting topics were agreed upon in a meeting in Berlin](http://www.zenodo.org/record/3457213). Subsequently, based on this, four [sections](https://www.nfdi.de/sektionen/) were established by the Scientific Senate on 1.10.2021. The following sections have been launched: * Common Infrastructures (*section-infra*). diff --git a/src/content/news/2022-05-10-dataplant-progress-seminar-on-considerations-and-the-state-of-developments-in-the-dataplant-infrastructure-and-services.md b/src/content/news/2022-05-10-dataplant-progress-seminar-on-considerations-and-the-state-of-developments-in-the-dataplant-infrastructure-and-services.md index 532e6e08..761beed2 100644 --- a/src/content/news/2022-05-10-dataplant-progress-seminar-on-considerations-and-the-state-of-developments-in-the-dataplant-infrastructure-and-services.md +++ b/src/content/news/2022-05-10-dataplant-progress-seminar-on-considerations-and-the-state-of-developments-in-the-dataplant-infrastructure-and-services.md @@ -1,7 +1,7 @@ --- date: 2022-05-10 title: First DataPLANT progress seminar on “Considerations and the state of developments in the DataPLANT infrastructure and services” -previewText: Today we held our first DataPLANT progress seminar on “Considerations and the state of developments in the DataPLANT infrastructure and services” attended by the majority of personnel associated to or working for the consortium. The core motivation was to provide an overview on the actual infrastructure developments over the last couple of month and its core design principles. The developments follow up on the propositions from the... +description: Today we held our first DataPLANT progress seminar on “Considerations and the state of developments in the DataPLANT infrastructure and services” attended by the majority of personnel associated to or working for the consortium. The core motivation was to provide an overview on the actual infrastructure developments over the last couple of month and its core design principles. The developments follow up on the propositions from the... --- Today we held our first DataPLANT progress seminar on “Considerations and the state of developments in the DataPLANT infrastructure and services” attended by the majority of personnel associated to or working for the consortium. The core motivation was to provide an overview on the actual infrastructure developments over the last couple of month and its core design principles. The developments follow up on the propositions from the [Annweiler/Trifels strategic meeting and year one review](https://nfdi4plants.de/content/news/2021-10-01-governance-in-dataplant-year-one-review-in-trifels.html) and discussions in GitLab and now in Teams project management tools. The presenters offered an overview on current ideas on the versatile design of the and an initial selection of services. diff --git a/src/content/news/2022-05-19-dataplant-infrastructure-and-services-at-upcoming-nfdi-tool-talks.md b/src/content/news/2022-05-19-dataplant-infrastructure-and-services-at-upcoming-nfdi-tool-talks.md index 78e63ec6..5db6b128 100644 --- a/src/content/news/2022-05-19-dataplant-infrastructure-and-services-at-upcoming-nfdi-tool-talks.md +++ b/src/content/news/2022-05-19-dataplant-infrastructure-and-services-at-upcoming-nfdi-tool-talks.md @@ -1,7 +1,7 @@ --- date: 2022-05-19 title: DataPLANT infrastructure and services at upcoming NFDI Tool Talk -previewText: The infrastructure development team of DataPLANT will present “The current state of developments in the DataPLANT infrastructure and services” at the upcoming NFDI tool talks. The tool talks are open to the wider NFDI community and foster the exchange between the practitioners and developers in research data management tools and services. It allows us to verify our concepts and receive feedback on the principles and ideas before advancing them to the next level. The presentation follows up... +description: The infrastructure development team of DataPLANT will present “The current state of developments in the DataPLANT infrastructure and services” at the upcoming NFDI tool talks. The tool talks are open to the wider NFDI community and foster the exchange between the practitioners and developers in research data management tools and services. It allows us to verify our concepts and receive feedback on the principles and ideas before advancing them to the next level. The presentation follows up... --- The infrastructure development team of DataPLANT will present “The current state of developments in the DataPLANT infrastructure and services” at the upcoming NFDI tool talks. The tool talks are open to the wider NFDI community and foster the exchange between the practitioners and developers in research data management tools and services. It allows us to verify our concepts and receive feedback on the principles and ideas before advancing them to the next level. diff --git a/src/content/news/2022-06-23-dataplant-participated-in-the-jcdl-satellite-event.md b/src/content/news/2022-06-23-dataplant-participated-in-the-jcdl-satellite-event.md index cf87bfad..d906327e 100644 --- a/src/content/news/2022-06-23-dataplant-participated-in-the-jcdl-satellite-event.md +++ b/src/content/news/2022-06-23-dataplant-participated-in-the-jcdl-satellite-event.md @@ -1,7 +1,7 @@ --- date: 2022-06-23 title: DataPLANT participated in the JCDL Satellite Event -previewText: 'DataPLANT participated in the JCDL Satellite Event on 23rd June 2022. It presented its background and activities on research data management in the workshop "RDM and DP communities"' +description: 'DataPLANT participated in the JCDL Satellite Event on 23rd June 2022. It presented its background and activities on research data management in the workshop "RDM and DP communities"' --- DataPLANT participated in the [JCDL Satellite Event](https://2022.jcdl.org/nfdi-satellite-event/) on 23rd June 2022. It presented it's background and activities on research data management in the workshop [RDM and DP communities: Finding the common ground to develop a collaborative future service landscape](https://2022.jcdl.org/nfdi-satellite-event/#workshop-rdm). Long-term access to research data is one of the major goals of the NFDI. Our consortium is strongly committed to research data management and the necessary technical and organizational frameworks. Before the start of DataPLANT the participants of the University Freiburg were active in long standing research activities in digital preservation and continuous access. They participated in various digital preservation projects like bwFLA, EMiL and RDM projects like CiTAR, VICE and BioDATEN. diff --git a/src/content/news/2022-07-08-madland-and-dataplant-signed-a-memorandum-of-understanding.md b/src/content/news/2022-07-08-madland-and-dataplant-signed-a-memorandum-of-understanding.md index b00cd8e9..25a516b4 100644 --- a/src/content/news/2022-07-08-madland-and-dataplant-signed-a-memorandum-of-understanding.md +++ b/src/content/news/2022-07-08-madland-and-dataplant-signed-a-memorandum-of-understanding.md @@ -1,7 +1,7 @@ --- date: 2022-07-08 title: MAdLand and DataPLANT signed a Memorandum of Understanding -previewText: On 8th July the MadLand project represented by Prof. Dr. Stefan A. Rensing and DataPLANT represented by its speaker signed a Memorandum of Understanding on joint collaboration in research data management in fundamental plant research. Both parties share the same goals to reach FAIRification of research data as in modern plant research, scientists increasingly rely on research data management (RDM) for the effective acquisition, processing, archival, and sharing of research data sets... +description: On 8th July the MadLand project represented by Prof. Dr. Stefan A. Rensing and DataPLANT represented by its speaker signed a Memorandum of Understanding on joint collaboration in research data management in fundamental plant research. Both parties share the same goals to reach FAIRification of research data as in modern plant research, scientists increasingly rely on research data management (RDM) for the effective acquisition, processing, archival, and sharing of research data sets... --- On 8th July the [MAdLand](https://madland.science/) project represented by [Prof. Dr. Stefan A. Rensing](https://uni-freiburg.de/universitaet/organisation-und-verwaltung/rektorat/prorektorat-fuer-forschung-und-innovation/) and DataPLANT represented by its speaker signed a Memorandum of Understanding on joint collaboration in research data management in fundamental plant research. Both parties share the same goals to reach FAIRification of research data as in modern plant research, scientists increasingly rely on research data management (RDM) for the effective acquisition, processing, archival, and sharing of research data sets. The collaborators are convinced that RDM is a fundamental building block in science to ensure advancement and innovation by exchanging of interdisciplinary expertise and knowledge. Thus, the field of collaboration encompass the implementation of the FAIR data principles, the building a community centric infra- and service structure and the forming a strong network for RDM information and knowledge. diff --git a/src/content/news/2022-08-15-dataplant-published-knowledge-base.md b/src/content/news/2022-08-15-dataplant-published-knowledge-base.md index a7a81153..89567ae2 100644 --- a/src/content/news/2022-08-15-dataplant-published-knowledge-base.md +++ b/src/content/news/2022-08-15-dataplant-published-knowledge-base.md @@ -1,7 +1,7 @@ --- date: 2022-08-15 title: DataPLANT published Knowledge Base -previewText: DataPLANT has developed a Knowledge Base for research data management (RDM) in fundamental plant research. The Knowledge Base is divided into three sections, which build upon each other. Within the Fundamentals section, researchers are provided with knowledge about principles of RDM, such as the FAIR Data Principles or “What is metadata?”. As the header already indicates, the second section is on how DataPLANT is implementing these aspects to support plant researchers with sophisticated and straight-forward structures, tools and services for their RDM. At the moment... +description: DataPLANT has developed a Knowledge Base for research data management (RDM) in fundamental plant research. The Knowledge Base is divided into three sections, which build upon each other. Within the Fundamentals section, researchers are provided with knowledge about principles of RDM, such as the FAIR Data Principles or “What is metadata?”. As the header already indicates, the second section is on how DataPLANT is implementing these aspects to support plant researchers with sophisticated and straight-forward structures, tools and services for their RDM. At the moment... --- DataPLANT has developed a [Knowledge Base](https://nfdi4plants.org/nfdi4plants.knowledgebase/index.html) for research data management (RDM) in fundamental plant research. The Knowledge Base is divided into three sections, which build upon each other. Within the **Fundamentals** section, researchers are provided with knowledge about principles of RDM, such as the FAIR Data Principles or “What is metadata?”. As the header already indicates, the second section is on how **DataPLANT is implementing** these aspects to support plant researchers with sophisticated and straight-forward structures, tools and services for their RDM. At the moment, the section features articles about DataPLANT’s Annotated Research Context (ARC), the ARC Commander, Swate, and DataPLANT’s DataHUB, with more articles currently under construction. With the gained knowledge (or right at the beginning), researchers can jump into the **Training & Tutorials** section to use the QuickStarts on ARC, the ARC Commander, and Swate to fill their own ARCs with metadata. diff --git a/src/content/news/2022-09-16-dataplant-participated-in-the-workshop-forschungsdaten-managen.md b/src/content/news/2022-09-16-dataplant-participated-in-the-workshop-forschungsdaten-managen.md index 6c8f88dd..514d9f32 100644 --- a/src/content/news/2022-09-16-dataplant-participated-in-the-workshop-forschungsdaten-managen.md +++ b/src/content/news/2022-09-16-dataplant-participated-in-the-workshop-forschungsdaten-managen.md @@ -1,7 +1,7 @@ --- date: 2022-09-16 title: 'DataPLANT participated in the workshop "Forschungssoftware managent"' -previewText: 'Two colleagues in the DataPLANT consortium participated in the workshop "Forschungssoftware managen" held at Stuttgart University mid September. The workshop was initiated by the DINI/nestor e.V. and brought together software developers and research data management specialists from various institutes, experts from service providers and university libraries.' +description: 'Two colleagues in the DataPLANT consortium participated in the workshop "Forschungssoftware managen" held at Stuttgart University mid September. The workshop was initiated by the DINI/nestor e.V. and brought together software developers and research data management specialists from various institutes, experts from service providers and university libraries.' --- Two colleagues in the DataPLANT consortium participated in the workshop ["Forschungssoftware managen"](https://dini.de/veranstaltungen/workshops/forschungssoftware-managen/) held at Stuttgart University mid September. The workshop was initiated by the DINI/nestor e.V. and brought together software developers and research data management specialists from various institutes, experts from service providers and university libraries. diff --git a/src/content/news/2022-09-27-create-your-own-dmp-with-dataplan.md b/src/content/news/2022-09-27-create-your-own-dmp-with-dataplan.md index b9193366..0f4acf67 100644 --- a/src/content/news/2022-09-27-create-your-own-dmp-with-dataplan.md +++ b/src/content/news/2022-09-27-create-your-own-dmp-with-dataplan.md @@ -1,7 +1,7 @@ --- date: 2022-09-27 title: Create your own Data Management Plan with DataPLAN -previewText: A Data Management Plan (DMP) structures the handling of research data in a scientific project and describes how to deal with the data during and after the end of your project. Many third-party funders, such as DFG, Horizon Europe, or BMBF expect you to provide these information as part of your funding application. +description: A Data Management Plan (DMP) structures the handling of research data in a scientific project and describes how to deal with the data during and after the end of your project. Many third-party funders, such as DFG, Horizon Europe, or BMBF expect you to provide these information as part of your funding application. --- A Data Management Plan (DMP) structures the handling of research data in a scientific project and describes how to deal with the data during and after the end of your project. Many third-party funders, such as DFG, Horizon Europe, or BMBF expect you to provide these information as part of your funding application. diff --git a/src/content/news/2022-10-25-3rd-arc-hackathon-at-the-fzjuelich.md b/src/content/news/2022-10-25-3rd-arc-hackathon-at-the-fzjuelich.md index 9db9c9ac..9f99c2a1 100644 --- a/src/content/news/2022-10-25-3rd-arc-hackathon-at-the-fzjuelich.md +++ b/src/content/news/2022-10-25-3rd-arc-hackathon-at-the-fzjuelich.md @@ -1,7 +1,7 @@ --- date: 2022-10-25 title: 3rd ARC Hackathon at the Forschungszentrum Jülich -previewText: We were glad to finally meet again in person for an ARC Hackathon at Forschungszentrum Jülich. The goal of the event was to work on improving DataPLANTs solution for FAIR data. The Annotated Research Context and its associated tools and services. +description: We were glad to finally meet again in person for an ARC Hackathon at Forschungszentrum Jülich. The goal of the event was to work on improving DataPLANTs solution for FAIR data. The Annotated Research Context and its associated tools and services. --- We were glad to finally meet again in person for an ARC Hackathon in the [IBG-4](https://www.fz-juelich.de/de/ibg/ibg-4) of the [Forschungszentrum Jülich](https://www.fz-juelich.de/de). The goal of the event was to work on improving DataPLANTs solution for FAIR data: The Annotated Research Context and its associated tools and services. diff --git a/src/content/news/2022-10-26-new-swate-version-delivers-increased-search-performance.md b/src/content/news/2022-10-26-new-swate-version-delivers-increased-search-performance.md index 8dafc977..a848acf1 100644 --- a/src/content/news/2022-10-26-new-swate-version-delivers-increased-search-performance.md +++ b/src/content/news/2022-10-26-new-swate-version-delivers-increased-search-performance.md @@ -1,7 +1,7 @@ --- date: 2022-10-26 title: New Swate version delivers increased search performance -previewText: We have just released the newest version of Swate, our Excel tool for simplifying the addition of standardized metadata for your experimental workflows by leveraging a simple use of ontologies. Together with the new changes in ISADotNet and Swobup we are now able to provide a much better search performance and a more stable experience for all users. Neo4j, as a GraphDB, was implemented for a restructuring of SwateDB, yielding a performance boost for our related term directed search. This especially... +description: We have just released the newest version of Swate, our Excel tool for simplifying the addition of standardized metadata for your experimental workflows by leveraging a simple use of ontologies. Together with the new changes in ISADotNet and Swobup we are now able to provide a much better search performance and a more stable experience for all users. Neo4j, as a GraphDB, was implemented for a restructuring of SwateDB, yielding a performance boost for our related term directed search. This especially... --- We have just released the newest version of Swate, our Excel tool for simplifying the addition of standardized metadata for your experimental workflows by leveraging a simple use of ontologies. Together with the new changes in [ISADotNet](https://github.com/nfdi4plants/ISADotNet) and [Swobup](https://github.com/nfdi4plants/Swobup) we are now able to provide a much better search performance and a more stable experience for all users. Neo4j, as a GraphDB, was implemented for a restructuring of SwateDB, yielding a performance boost for our related term directed search. This especially reduces the search time for ontology terms with an extremely high number of child terms, e.g. organism. diff --git a/src/content/news/2023-02-09-data-competence-centers-for-sciecne-meeting-in-Berlin.md b/src/content/news/2023-02-09-data-competence-centers-for-sciecne-meeting-in-Berlin.md index 76a02f70..1e657ee3 100644 --- a/src/content/news/2023-02-09-data-competence-centers-for-sciecne-meeting-in-Berlin.md +++ b/src/content/news/2023-02-09-data-competence-centers-for-sciecne-meeting-in-Berlin.md @@ -1,6 +1,6 @@ --- date: 2023-02-09 title: Data Competence Centers for Science - Meeting in Berlin -previewText: DataPLANT was present at the joint networking meeting of the NFDI and the applicants in the second grant application round for the data competence centers (DCC) an EU-funded project to improve data literacy in science. This was a full-day event at the Federal Ministry of Education and Research on February 9 in Berlin. To start, there was a presentation of the NFDI Edutrain section, the collaborative project Knowledge-Graph of the Data Literacy Alliance (DALIA), and a presentation... +description: DataPLANT was present at the joint networking meeting of the NFDI and the applicants in the second grant application round for the data competence centers (DCC) an EU-funded project to improve data literacy in science. This was a full-day event at the Federal Ministry of Education and Research on February 9 in Berlin. To start, there was a presentation of the NFDI Edutrain section, the collaborative project Knowledge-Graph of the Data Literacy Alliance (DALIA), and a presentation... --- DataPLANT was present at the joint networking meeting of the NFDI and the applicants in the second grant application round for the [data competence centers (DCC)](https://www.bildung-forschung.digital/digitalezukunft/de/wissen/Datenkompetenzen/datenkompetenzzentren_f%C3%BCr_die_wissenschaft_ordner/datenkompetenzzentren_fuer_die_wissenschaft_node.html) an EU-funded project to improve data literacy in science. This was a full-day event at the Federal Ministry of Education and Research on February 9 in Berlin. To start, there was a presentation of the NFDI Edutrain section, the collaborative project Knowledge-Graph of the Data Literacy Alliance (DALIA), and a presentation of results and findings from the Data Stewardship DataStew project. The latter brought some clues for the concrete design and the different job profiles needed. Data Stewardship is, after all, a central building block of strategy in DataPLANT and quite a few other NFDI consortia. After the elevator pitches of the 22 competing projects, there was the opportunity for a closer exchange with the applicants. Here, DataPLANT particularly matched DaKA, which was represented by colleagues from Osnabrück University of Applied Sciences and ZALF. DaKA aims to increase data competencies in agricultural science. Researchers from different disciplines are active in agricultural sciences and need appropriate support in making their data FAIR. At the data competence center, they are to be taught competencies and provided with offers that enable them to work together with data and to leverage potentials. Common interests exist in the topics of helpdesk and training of data stewards. Topics exchanged with other DCCs were electronic lab books or the more general use of the DataPLANT Ontology Services concept for other scientific fields. Other common interests are shared with de.KCD, which wants to develop a data literacy center that uses cloud technologies to create digital research and networking venues and learning and training environments. A structured training program for cloud-based data management will also be developed. diff --git a/src/content/news/2023-02-17-participation-of-dataplant-at-the-ldw-2023.md b/src/content/news/2023-02-17-participation-of-dataplant-at-the-ldw-2023.md index d7e2eae7..334b04aa 100644 --- a/src/content/news/2023-02-17-participation-of-dataplant-at-the-ldw-2023.md +++ b/src/content/news/2023-02-17-participation-of-dataplant-at-the-ldw-2023.md @@ -1,7 +1,7 @@ --- date: 2023-02-17 title: Participation of DataPLANT at Love Data Week 2023 -previewText: This year's Love Data Week was attended by several NFDI consortia, which given the cutting-edge topic "Data - Agent of Change," is not surprising. Together with the NFDI consortia NFDI4Microbiota and NFDI4Biodiversity, a panel discussion entitled "Wind of change - sharing is caring! How to improve research data and its benefits in the life sciences." was held at the University of Bremen. Making data-driven decisions in the life sciences has a huge effect on the well-being... +description: This year's Love Data Week was attended by several NFDI consortia, which given the cutting-edge topic "Data - Agent of Change," is not surprising. Together with the NFDI consortia NFDI4Microbiota and NFDI4Biodiversity, a panel discussion entitled "Wind of change - sharing is caring! How to improve research data and its benefits in the life sciences." was held at the University of Bremen. Making data-driven decisions in the life sciences has a huge effect on the well-being... --- This year's [Love Data Week](https://forschungsdaten.info/fdm-im-deutschsprachigen-raum/love-data-week/) was attended by several NFDI consortia, which given the cutting-edge topic "Data: Agent of Change," is not surprising. diff --git a/src/content/news/2023-03-03-participation-of-dataplant-at-the-est-2023.md b/src/content/news/2023-03-03-participation-of-dataplant-at-the-est-2023.md index 4d4c5598..0bdce7fb 100644 --- a/src/content/news/2023-03-03-participation-of-dataplant-at-the-est-2023.md +++ b/src/content/news/2023-03-03-participation-of-dataplant-at-the-est-2023.md @@ -1,7 +1,7 @@ --- date: 2023-03-03 title: Participation of DataPLANT at the E-Science-Tage 2023 -previewText: Given the slogan "Empower Your Research - Preserve Your Data", of course we didn't miss the opportunity to be part of the E-Science Days this year. In addition to the numerous contributions, the fact that contrary to last time we were able to meet in person in Heidelberg was great. We gave an overview of our homegrown data management plan assistance tool, named DataPLAN, and on how we are attempting to close the ontology gap and also what challenges we encountered when creating a data repository... +description: Given the slogan "Empower Your Research - Preserve Your Data", of course we didn't miss the opportunity to be part of the E-Science Days this year. In addition to the numerous contributions, the fact that contrary to last time we were able to meet in person in Heidelberg was great. We gave an overview of our homegrown data management plan assistance tool, named DataPLAN, and on how we are attempting to close the ontology gap and also what challenges we encountered when creating a data repository... --- Given the slogan "Empower Your Research - Preserve Your Data", of course we didn't miss the opportunity to be part of the [E-Science Days](https://e-science-tage.de/de/startseite) this year. In addition to the numerous contributions, the fact that contrary to last time we were able to meet in person in Heidelberg was great. diff --git a/src/content/news/2023-04-25-dataplant-participated-in-the-kida-i6-retreat.md b/src/content/news/2023-04-25-dataplant-participated-in-the-kida-i6-retreat.md index 8e671cb4..9cbabc10 100644 --- a/src/content/news/2023-04-25-dataplant-participated-in-the-kida-i6-retreat.md +++ b/src/content/news/2023-04-25-dataplant-participated-in-the-kida-i6-retreat.md @@ -1,7 +1,7 @@ --- date: 2023-04-25 title: DataPLANT participated in the KIDA I6 Retreat -previewText: DataPLANT recently participated in the KIDA I6 Retreat, held on April 24th and 25th, 2023 in Berlin Alt-Marienfelde at the German Federal Institute for Risk Assessment, 4SZ Study Centre for Food Chain Modelling and Artificial Intelligence, Department of Biological Safety. The retreat aimed to generate synergies between projects, with several topics presented during the event, including... +description: DataPLANT recently participated in the KIDA I6 Retreat, held on April 24th and 25th, 2023 in Berlin Alt-Marienfelde at the German Federal Institute for Risk Assessment, 4SZ Study Centre for Food Chain Modelling and Artificial Intelligence, Department of Biological Safety. The retreat aimed to generate synergies between projects, with several topics presented during the event, including... --- DataPLANT recently participated in the [KIDA](https://www.kida-bmel.de/kida) I6 Retreat, held on April 24th and 25th, 2023 in Berlin Alt-Marienfelde at the German Federal Institute for Risk Assessment, 4SZ Study Centre for Food Chain Modelling and Artificial Intelligence, Department of Biological Safety. The retreat aimed to generate synergies between projects, with several topics presented during the event, including: diff --git a/src/content/news/2023-04-28-dataplant-releases-a-first-versionof-the-docker-image-for-the-datahub-on-premise-installation.md b/src/content/news/2023-04-28-dataplant-releases-a-first-versionof-the-docker-image-for-the-datahub-on-premise-installation.md index f4ff25a1..3a923925 100644 --- a/src/content/news/2023-04-28-dataplant-releases-a-first-versionof-the-docker-image-for-the-datahub-on-premise-installation.md +++ b/src/content/news/2023-04-28-dataplant-releases-a-first-versionof-the-docker-image-for-the-datahub-on-premise-installation.md @@ -1,7 +1,7 @@ --- date: 2023-04-28 title: DataPLANT releases a first version of the Docker Image for the DataHUB on-premise installation -previewText: The DataPLANT DataHUB as a science gateway is primarily backed by the open source GitLab framework. It provides an entry point to our various services, starting with a versioned, generated web page and additional modules for community interaction. The DataHUB platform is where the DataPLANT Annotated Research Contexts (ARCs) evolve to a certain state. This can be done either on the central DataPLANT instance or on various on premise... +description: The DataPLANT DataHUB as a science gateway is primarily backed by the open source GitLab framework. It provides an entry point to our various services, starting with a versioned, generated web page and additional modules for community interaction. The DataHUB platform is where the DataPLANT Annotated Research Contexts (ARCs) evolve to a certain state. This can be done either on the central DataPLANT instance or on various on premise... --- The [DataPLANT DataHUB](https://git.nfdi4plants.org/explore) as a science gateway is primarily backed by the open source GitLab framework. It provides an entry point to our various services, starting with a versioned, generated web page and additional modules for community interaction. The DataHUB platform is where the DataPLANT Annotated Research Contexts ([ARCs](https://doi.org/10.11588/heibooks.979.c13751)) evolve to a certain state. This can be done either on the central DataPLANT instance or on various on premise installations. To allow more sites to join the DataHUB federation, we created a Docker image to ease the on-premise installation. The package is available like other [DataPLANT tools](https://github.com/nfdi4plants) on [GitHub](https://github.com/nfdi4plants/DataHUB). diff --git a/src/content/news/2023-05-02-DataPLANT-is-providing-an-updated-training-and-demonstration-environment-for-its-tools-and-services-accessible-remotely.md b/src/content/news/2023-05-02-DataPLANT-is-providing-an-updated-training-and-demonstration-environment-for-its-tools-and-services-accessible-remotely.md index 6cc91fed..ed4809fc 100644 --- a/src/content/news/2023-05-02-DataPLANT-is-providing-an-updated-training-and-demonstration-environment-for-its-tools-and-services-accessible-remotely.md +++ b/src/content/news/2023-05-02-DataPLANT-is-providing-an-updated-training-and-demonstration-environment-for-its-tools-and-services-accessible-remotely.md @@ -1,7 +1,7 @@ --- date: 2023-05-02 title: DataPLANT is providing an updated training and demonstration environment for its tools and services accessible remotely -previewText: In the course of the preparations for the KIDA-I6 retreat hosted by the BfRwe thoroughly updated the training and teaching infrastructure and pushed the installed DataPLANT tools to their latest versions. The infrastructure is a virtual desktop environment which uses the remote access functionality of the PC pool system "bwLehrpool" in Freiburg as a backend. The environment is available through the DataPLANT entry proxy via https://vdi.nfdi4plants.org, which then redirects. At this point, select "Normal operation" for the pre-test... +description: In the course of the preparations for the KIDA-I6 retreat hosted by the BfRwe thoroughly updated the training and teaching infrastructure and pushed the installed DataPLANT tools to their latest versions. The infrastructure is a virtual desktop environment which uses the remote access functionality of the PC pool system "bwLehrpool" in Freiburg as a backend. The environment is available through the DataPLANT entry proxy via https://vdi.nfdi4plants.org, which then redirects. At this point, select "Normal operation" for the pre-test... --- In the course of the preparations for the [KIDA-I6 retreat hosted by the BfR](https://nfdi4plants.org/content/news/2023-04-25-dataplant-participated-in-the-kida-i6-retreat.html) we thoroughly updated the training and teaching infrastructure and pushed the installed DataPLANT tools to their latest versions. The infrastructure is a virtual desktop environment which uses the remote access functionality of the PC pool system ["bwLehrpool"](www.bwlehrpool.de) in Freiburg as a backend. The environment is available through the DataPLANT entry proxy via [https://vdi.nfdi4plants.org](https://vdi.nfdi4plants.org), which then redirects. diff --git a/src/content/news/2023-05-10-rptu-summer-school-on-fundamentals-of-RDM.md b/src/content/news/2023-05-10-rptu-summer-school-on-fundamentals-of-RDM.md index 203b5be1..8e6d573b 100644 --- a/src/content/news/2023-05-10-rptu-summer-school-on-fundamentals-of-RDM.md +++ b/src/content/news/2023-05-10-rptu-summer-school-on-fundamentals-of-RDM.md @@ -1,7 +1,7 @@ --- date: 2023-05-10 title: RPTU Summer School on Fundamentals of Research Data Management -previewText: Always wanted to understand the fundamentals of research data management? Join us for our Summer School the week of July 17th to 21th, 2023... +description: Always wanted to understand the fundamentals of research data management? Join us for our Summer School the week of July 17th to 21th, 2023... --- **RPTU Summer School on Fundamentals of Research Data Management** *July 17th to 21th, 2023* diff --git a/src/content/news/2023-06-16-dataplant-participated-in-the-15th-international-workshop-on-science-gateways.md b/src/content/news/2023-06-16-dataplant-participated-in-the-15th-international-workshop-on-science-gateways.md index 6e004b74..32a3cd5f 100644 --- a/src/content/news/2023-06-16-dataplant-participated-in-the-15th-international-workshop-on-science-gateways.md +++ b/src/content/news/2023-06-16-dataplant-participated-in-the-15th-international-workshop-on-science-gateways.md @@ -1,7 +1,7 @@ --- date: 2023-06-16 title: DataPLANT participated in the 15th International Workshop on Science Gateways -previewText: DataPLANT actively participated in the 15th International Workshop on Science Gateways held in Tübingen, Germany from 13th to 15th June. The workshop aimed to bring together researchers, scientists, software engineers, and Science Gateway developers from various domains to discuss challenges, share solutions, and shape the future directions of Science Gateways in e-Science... +description: DataPLANT actively participated in the 15th International Workshop on Science Gateways held in Tübingen, Germany from 13th to 15th June. The workshop aimed to bring together researchers, scientists, software engineers, and Science Gateway developers from various domains to discuss challenges, share solutions, and shape the future directions of Science Gateways in e-Science... --- DataPLANT actively participated in the [15th International Workshop on Science Gateways](https://iwsgateways.github.io/iwsg2023/index.html) held in Tübingen, Germany from 13th to 15th June. The workshop aimed to bring together researchers, scientists, software engineers, and Science Gateway developers from various domains to discuss challenges, share solutions, and shape the future directions of Science Gateways in e-Science. diff --git a/src/content/news/2023-07-03-dataplant-scientific-board-meeting.md b/src/content/news/2023-07-03-dataplant-scientific-board-meeting.md index ff7a0b72..fdbd096f 100644 --- a/src/content/news/2023-07-03-dataplant-scientific-board-meeting.md +++ b/src/content/news/2023-07-03-dataplant-scientific-board-meeting.md @@ -1,7 +1,7 @@ --- date: 2023-07-03 title: DataPlant Scientific Board Meeting -previewText: 'End of June the DataPLANT Scientific Board meeting was held online to discuss the progress of the ongoing developments within the NFDI consortium. The developments are based on two main principles: personnel assistance and technical support, and infrastructure. The following key points were addressed...' +description: 'End of June the DataPLANT Scientific Board meeting was held online to discuss the progress of the ongoing developments within the NFDI consortium. The developments are based on two main principles: personnel assistance and technical support, and infrastructure. The following key points were addressed...' --- End of June the DataPLANT Scientific Board meeting was held online to discuss the progress of the ongoing developments within the NFDI consortium. The developments are based on two main principles: personnel assistance and technical support, and infrastructure. The following key points were addressed: diff --git a/src/content/news/2023-07-06-dataplant-at-the-open-science-festival.md b/src/content/news/2023-07-06-dataplant-at-the-open-science-festival.md index 3c71ac24..1bf722c7 100644 --- a/src/content/news/2023-07-06-dataplant-at-the-open-science-festival.md +++ b/src/content/news/2023-07-06-dataplant-at-the-open-science-festival.md @@ -1,7 +1,7 @@ --- date: 2023-07-06 title: DataPLANT at the Open-Science-Festival -previewText: DataPLANT as a consortium in the National Research Data Infrastructure is committed to Open Science. The ZBmed, Information Center for Life Sciences and a key player in the NFDI, was host for the Open Science Festival 2023. DataPLANT was there for new ideas on how Open-Science and Open-Data becomes practice. OSF 2023 is one of the premier events for open science. Workshops and lightening talks presented tools and use-cases, but also asked whether the Wissenschaftszeitvertragsgesetz is suitable to... +description: DataPLANT as a consortium in the National Research Data Infrastructure is committed to Open Science. The ZBmed, Information Center for Life Sciences and a key player in the NFDI, was host for the Open Science Festival 2023. DataPLANT was there for new ideas on how Open-Science and Open-Data becomes practice. OSF 2023 is one of the premier events for open science. Workshops and lightening talks presented tools and use-cases, but also asked whether the Wissenschaftszeitvertragsgesetz is suitable to... --- DataPLANT as a consortium in the National Research Data Infrastructure is committed to Open Science. The ZBmed, Information Center for Life Sciences and a key player in the NFDI, was host for the [Open Science Festival 2023](https://www.zbmed.de/vernetzen/veranstaltungen/open-science-festival). DataPLANT was there for new ideas on how Open-Science and Open-Data becomes practice. OSF 2023 is one of the premier events for open science. diff --git a/src/content/news/2023-08-18-dataplant-participates-in-the-base4-initialization-phase-proposal-nfdi.software.md b/src/content/news/2023-08-18-dataplant-participates-in-the-base4-initialization-phase-proposal-nfdi.software.md index 3d989ccf..d47b2a1a 100644 --- a/src/content/news/2023-08-18-dataplant-participates-in-the-base4-initialization-phase-proposal-nfdi.software.md +++ b/src/content/news/2023-08-18-dataplant-participates-in-the-base4-initialization-phase-proposal-nfdi.software.md @@ -1,7 +1,7 @@ --- date: 2023-08-18 title: DataPLANT participates in the Base4 initialization phase proposal nfdi.software -previewText: Research software plays a major role in RDM besides data. DataPLANT recognizes this already with the formulation of the ARC specification taking software and workflows into account as well. To obtain a better overview within the wide field of research software nfdi.software will implement a central marketplace. The idea is to enable a seamless access to the extensive portfolio of research software in the domains of the different NFDI consortia, for facilitating discovery... +description: Research software plays a major role in RDM besides data. DataPLANT recognizes this already with the formulation of the ARC specification taking software and workflows into account as well. To obtain a better overview within the wide field of research software nfdi.software will implement a central marketplace. The idea is to enable a seamless access to the extensive portfolio of research software in the domains of the different NFDI consortia, for facilitating discovery... --- Research software plays a major role in RDM besides data. DataPLANT recognizes this already with the formulation of the ARC specification taking software and workflows into account as well. To obtain a better overview within the wide field of research software nfdi.software will implement a central marketplace. The idea is to enable a seamless access to the extensive portfolio of research software in the domains of the different NFDI consortia, for facilitating discovery, providing context and documenting maturity of research software, for integrating information on the relevance, impact, and adoption of software in communities. This would allow for a connection of research software to other relevant research outcomes, e.g., publications and data, and services, e.g., execution platforms. Such a market place leverages the use of research data made available in the NFDI, and provides a comprehensive overview of software produced by researchers, research software engineers, and their organizations, as well as of software created by the NFDI consortia. diff --git a/src/content/news/2023-08-27-dp-participates-in-base4nfdi-iam-workshop-on-community-aai-solutions.md b/src/content/news/2023-08-27-dp-participates-in-base4nfdi-iam-workshop-on-community-aai-solutions.md index 19e72b6a..04b5de27 100644 --- a/src/content/news/2023-08-27-dp-participates-in-base4nfdi-iam-workshop-on-community-aai-solutions.md +++ b/src/content/news/2023-08-27-dp-participates-in-base4nfdi-iam-workshop-on-community-aai-solutions.md @@ -1,7 +1,7 @@ --- date: 2023-08-27 title: DataPLANT participates in Base4NFDI IAM workshop on Community AAI solutions -previewText: DataPLANT's IAM experts participated in the second workshop which was held on the afternoon of August 24, 2023, as part of the IAM4NFDI Community Events. The purpose of these events is to disseminate fundamental Identity and Access Management (IAM) knowledge related to a the goal of a common NFDI AAI, provide information on the various facets of the Basic Service, and gather valuable feedback. The workshop started with an introduction and Recap to set the context for the workshop's objectives and inform all... +description: DataPLANT's IAM experts participated in the second workshop which was held on the afternoon of August 24, 2023, as part of the IAM4NFDI Community Events. The purpose of these events is to disseminate fundamental Identity and Access Management (IAM) knowledge related to a the goal of a common NFDI AAI, provide information on the various facets of the Basic Service, and gather valuable feedback. The workshop started with an introduction and Recap to set the context for the workshop's objectives and inform all... --- DataPLANT's IAM experts participated in the second workshop which was held on the afternoon of August 24, 2023, as part of the IAM4NFDI Community Events. The purpose of these events is to disseminate fundamental Identity and Access Management (IAM) knowledge related to a the goal of a common NFDI AAI, provide information on the various facets of the Basic Service, and gather valuable feedback. The workshop started with an introduction and Recap to set the context for the workshop's objectives and inform all participating consortia on the state of the considerations and developments. In the Community-AAI (CAAI) Solutions part the workshop delved into the concepts surrounding Community-AAI solutions, specifically focusing on the Architecture of the NFDI-AAI. A further segment discussed the notion of Community-AAI as a service, exploring its implications and benefits within the context of the IAM framework. Four different implementations and frameworks got presented. This was followed by a field report detailing the integration of Research Data Management Organizers (RDMO) into the IAM system. In the second part of the workshop participants were briefed on crucial considerations and awareness points when operating a Community-AAI system. A further segment covered Authorization and Virtual Organization (VO) management within the Community-AAI framework. At the end insights and experiences from operators of Community-AAI systems were shared, providing valuable real-world perspectives. diff --git a/src/content/news/2023-09-04-step-by-step-integration-of-dataplant-workflows.md b/src/content/news/2023-09-04-step-by-step-integration-of-dataplant-workflows.md index 3fe80845..7c6d0d42 100644 --- a/src/content/news/2023-09-04-step-by-step-integration-of-dataplant-workflows.md +++ b/src/content/news/2023-09-04-step-by-step-integration-of-dataplant-workflows.md @@ -1,7 +1,7 @@ --- date: 2023-09-04 title: Step-by-step Integration of Galaxy Workflows -previewText: As a core objective we aimed to provide a science gateway that serves as a technical foundation, enabling plant researchers to access approaches inspired by software engineering for data management. Over the past two years, we have developed the DataPLANT DataHUB, a comprehensive platform offering various research data management (RDM) workflows to support data scientists throughout the entire data life cycle. These workflows encompass activities such as data annotation, structuring, and ultimately, the publication of research outcomes... +description: As a core objective we aimed to provide a science gateway that serves as a technical foundation, enabling plant researchers to access approaches inspired by software engineering for data management. Over the past two years, we have developed the DataPLANT DataHUB, a comprehensive platform offering various research data management (RDM) workflows to support data scientists throughout the entire data life cycle. These workflows encompass activities such as data annotation, structuring, and ultimately, the publication of research outcomes... --- As a core objective we aimed to provide a science gateway that serves as a technical foundation, enabling plant researchers to access approaches inspired by software engineering for data management. Over the past two years, we have developed the [DataPLANT DataHUB](https://git.nfdi4plants.org/explore), a comprehensive platform offering various research data management (RDM) workflows to support data scientists throughout the entire data life cycle. These workflows encompass activities such as data annotation, structuring, and ultimately, the publication of research outcomes. A further aim projected for the third year of DataPLANT was to enable the DataHUB to serve as the primary entry point and provide researchers with access to a range of analysis workflows. The workflow descriptions are stored in the Annotated Research Context ([ARC](https://nfdi4plants.org/nfdi4plants.knowledgebase/docs/implementation/AnnotatedResearchContext.html)), ensuring compatibility with processing frameworks like Galaxy and nf-core nextflow pipelines. This should allow researchers to seamlessly integrate their analysis pipelines with the DataHUB, facilitating efficient data processingand data reuse. As a first major step, we have developed an assisted workflow specifically tailored for [data publication](https://archive.nfdi4plants.org/communities/dataplant?q=&l=list&p=1&s=10&sort=newest) using CERN's Open Source repository software InvenioRDM. This [workflow]((https://nfdi4plants.org/content/news/2023-06-16-dataplant-participated-in-the-15th-international-workshop-on-science-gateways.html)) simplifies the process of sharing research data by providing guidance and support to researchers during the publication stage. diff --git a/src/content/news/2023-09-18-dataplant-attended-the-1st-conference-on-research-data-infrastructure.md b/src/content/news/2023-09-18-dataplant-attended-the-1st-conference-on-research-data-infrastructure.md index 9a35ff20..f3cf1a67 100644 --- a/src/content/news/2023-09-18-dataplant-attended-the-1st-conference-on-research-data-infrastructure.md +++ b/src/content/news/2023-09-18-dataplant-attended-the-1st-conference-on-research-data-infrastructure.md @@ -1,7 +1,7 @@ --- date: 2023-09-18 title: DataPLANT attended the 1st Conference on Research Data Infrastructure -previewText: DataPLANT attended the 1st Conference on Research Data Infrastructure, which took place from 12. - 14. September in Karlsruhe. Research data are the foundation of knowledge and innovation in all scientific fields. The key to harnessing these data treasures is a powerful infrastructure for establishing interdisciplinary research data management. Under the motto "Connecting Communities", more than 700 national and international stakeholders from all fields of research as well as from the infrastructure sector... +description: DataPLANT attended the 1st Conference on Research Data Infrastructure, which took place from 12. - 14. September in Karlsruhe. Research data are the foundation of knowledge and innovation in all scientific fields. The key to harnessing these data treasures is a powerful infrastructure for establishing interdisciplinary research data management. Under the motto "Connecting Communities", more than 700 national and international stakeholders from all fields of research as well as from the infrastructure sector... --- DataPLANT attended the [1st Conference on Research Data Infrastructure](LINK), which took place from 12. - 14. September in Karlsruhe. Research data are the foundation of knowledge and innovation in all scientific fields. The key to harnessing these data treasures is a powerful infrastructure for establishing interdisciplinary research data management. Under the motto "Connecting Communities", more than 700 national and international stakeholders from all fields of research as well as from the infrastructure sector took part to exchange ideas on excellent research data management (RDM) of the future. DataPLANT made intensive use of the opportunity to exchange ideas and network with NFDI consortia and other RDM stakeholders. Over the course of three days, topics related to RDM and the joint development of an effective research data infrastructure for Germany and beyond were examined from a variety of perspectives. CoRDI stands for more knowledge through better use of research data, for innovation and the resulting societal benefits. diff --git a/src/content/news/2023-10-19-deepen-the-collaboration-of-dataplant-and-nfdi4bioimage.md b/src/content/news/2023-10-19-deepen-the-collaboration-of-dataplant-and-nfdi4bioimage.md index 591048c3..3ccf455c 100644 --- a/src/content/news/2023-10-19-deepen-the-collaboration-of-dataplant-and-nfdi4bioimage.md +++ b/src/content/news/2023-10-19-deepen-the-collaboration-of-dataplant-and-nfdi4bioimage.md @@ -1,7 +1,7 @@ --- date: 2023-10-19 title: Deepen the collaboration of DataPLANT and NFDI4BIOIMAGE - All-Hands Meeting in Düsseldorf -previewText: Colleagues from DataPLANT were present at the three day all-hands event of NFDI4BIOIMAGE in Düsseldorf to further deepen the already started cooperation between the two consortia. NFDI4BIOIMAGE is an consortium of the third round in the National Research Data Infrastructure to foster the Research Data Management for Microscopy and Bioimage Analysis.Joint considerations for the use of the Annotated Research Context have already been made for the grant application and for a CoRDI poster... +description: Colleagues from DataPLANT were present at the three day all-hands event of NFDI4BIOIMAGE in Düsseldorf to further deepen the already started cooperation between the two consortia. NFDI4BIOIMAGE is an consortium of the third round in the National Research Data Infrastructure to foster the Research Data Management for Microscopy and Bioimage Analysis.Joint considerations for the use of the Annotated Research Context have already been made for the grant application and for a CoRDI poster... --- Colleagues from DataPLANT were present at the three day all-hands event of [NFDI4BIOIMAGE](https://nfdi4bioimage.de/en/start/) in Düsseldorf to further deepen the already started cooperation between the two consortia. NFDI4BIOIMAGE is an consortium of the third round in the [National Research Data Infrastructure](https://www.nfdi.de/) to foster the Research Data Management for Microscopy and Bioimage Analysis. Joint considerations for the use of the [Annotated Research Context](https://nfdi4plants.org/nfdi4plants.knowledgebase/docs/implementation/AnnotatedResearchContext.html) (ARC) have already been made for the grant application and for a CoRDI posters. Further discussion points revolved around how to sensibly combine services and jointly organize crucial tasks such as the provisioning of helpdesks for the research community. Furthermore, discussions were about the design of centralized vs. federated service infrastructures, where both consortia want to make sure that services can be integrated by each other and into the wider NFDI efforts of the evolving services landscape. Both parties want to remain in regular exchange on this. It was considered that DataPLANT remains the primary contact for the fundamental plant research community, also when various image data is to be considered. Here, DataPLANT ensures that image data is managed according to the considerations and determinations set by NFDI4BIOIMAGE, which provides specifications on how image data should be managed in ARCs. Both consortia use the ARC foundation for this purpose. Other considerations included the integration of (interactive) workflows and the provision of Virtual Desktop Infrastructures (VDI). For the former, the ARC also offers corresponding starting points. VDI can be a good basis for training with fully equipped desktop software environments, as has already been tested in DataPLANT on preliminary infrastructures. diff --git a/src/content/news/2023-10-24-published-paper-streamlining-research-data-management-in-plant-sciences.md b/src/content/news/2023-10-24-published-paper-streamlining-research-data-management-in-plant-sciences.md index 465d17f7..42043810 100644 --- a/src/content/news/2023-10-24-published-paper-streamlining-research-data-management-in-plant-sciences.md +++ b/src/content/news/2023-10-24-published-paper-streamlining-research-data-management-in-plant-sciences.md @@ -1,7 +1,7 @@ --- date: 2023-10-24 title: Published paper - Streamlining Research Data Management in Plant Sciences -previewText: DataPLANT aims to support fundamental plant researchers in data management in various ways. Planning is a crucial component especially in the grant application and setup period of projects. Plant sciences present specific RDM needs, with unique data types and - DataPLAN. It addresses challenges in Research Data Management (RDM) specific to plant sciences.... +description: DataPLANT aims to support fundamental plant researchers in data management in various ways. Planning is a crucial component especially in the grant application and setup period of projects. Plant sciences present specific RDM needs, with unique data types and - DataPLAN. It addresses challenges in Research Data Management (RDM) specific to plant sciences.... --- DataPLANT aims to support fundamental plant researchers in data management in various ways. Planning is a crucial component especially in the grant application and setup period of projects. Plant sciences present specific RDM needs, with unique data types and challenges. For this purpose the TA1 team developed a specialized tool: [DataPLAN](phttps://plan.nfdi4plants.org/). It addresses challenges in Research Data Management (RDM) specific to plant sciences. DataPLAN, an open-source tool, incorporates prewritten Data Management Plan (DMP) content to facilitate the creation of multiple DMPs. Compatible with Horizon 2020, Horizon Europe, and DFG-funded projects, DataPLAN aims to standardize RDM practices, reduce workload, and enhance collaboration by offering customizable templates. diff --git a/src/content/news/2023-11-10-biohackathon-europe-in-barcelona-fostered-collaborative-advances-on-bioinformatics-tools-and-international-exchange-of-dataplant-developers.md b/src/content/news/2023-11-10-biohackathon-europe-in-barcelona-fostered-collaborative-advances-on-bioinformatics-tools-and-international-exchange-of-dataplant-developers.md index 0d25c951..033046aa 100644 --- a/src/content/news/2023-11-10-biohackathon-europe-in-barcelona-fostered-collaborative-advances-on-bioinformatics-tools-and-international-exchange-of-dataplant-developers.md +++ b/src/content/news/2023-11-10-biohackathon-europe-in-barcelona-fostered-collaborative-advances-on-bioinformatics-tools-and-international-exchange-of-dataplant-developers.md @@ -1,7 +1,7 @@ --- date: 2023-11-10 title: BioHackathon Europe in Barcelona Fostered Collaborative Advances on Bioinformatics Tools and International Exchange of (DataPLANT) Developers -previewText: Last week, from October 30th to November 3rd, ELIXIR organized the BioHackathon Europe in Barcelona, drawing international participants, including Timo Mühlhaus, Jonathan Bauer, Lukas Weil, Xiaoran Zhou, and Björn Grüning from the DataPLANT team. The event fostered collaboration, discussions, and shared experiences among 150 participants from across Europe and even Australia... +description: Last week, from October 30th to November 3rd, ELIXIR organized the BioHackathon Europe in Barcelona, drawing international participants, including Timo Mühlhaus, Jonathan Bauer, Lukas Weil, Xiaoran Zhou, and Björn Grüning from the DataPLANT team. The event fostered collaboration, discussions, and shared experiences among 150 participants from across Europe and even Australia... --- Last week, from October 30th to November 3rd, ELIXIR organized the [BioHackathon Europe](https://biohackathon-europe.org/) in Barcelona, drawing international participants, including Timo Mühlhaus, Jonathan Bauer, Lukas Weil, Xiaoran Zhou, and Björn Grüning from the DataPLANT team. The event fostered collaboration, discussions, and shared experiences among 150 participants from across Europe and even Australia. diff --git a/src/content/news/2023-11-22-collaborative-workshop-strengthens-interconnection-of-fdm-helpdesks-across-consortia-and-beyond.md b/src/content/news/2023-11-22-collaborative-workshop-strengthens-interconnection-of-fdm-helpdesks-across-consortia-and-beyond.md index a3cdf153..d09d3a03 100644 --- a/src/content/news/2023-11-22-collaborative-workshop-strengthens-interconnection-of-fdm-helpdesks-across-consortia-and-beyond.md +++ b/src/content/news/2023-11-22-collaborative-workshop-strengthens-interconnection-of-fdm-helpdesks-across-consortia-and-beyond.md @@ -1,7 +1,7 @@ --- date: 2023-11-22 title: Collaborative Workshop Strengthens Interconnection of FDM Helpdesks Across Consortia and Beyond -previewText: In a collaborative effort to enhance the landscape of research data management (RDM), a two-day workshop on networking FDM helpdesks took place on November 20th and 21st, 2023, at the University of Duisburg-Essen. The event, which included participants beyond the DataPLANT Consortium, saw the gathering of professionals from institutional FDM contact points, NFDI helpdesks, and support initiatives from FDM state initiatives... +description: In a collaborative effort to enhance the landscape of research data management (RDM), a two-day workshop on networking FDM helpdesks took place on November 20th and 21st, 2023, at the University of Duisburg-Essen. The event, which included participants beyond the DataPLANT Consortium, saw the gathering of professionals from institutional FDM contact points, NFDI helpdesks, and support initiatives from FDM state initiatives... --- In a collaborative effort to enhance the landscape of research data management (RDM), a [two-day workshop on networking FDM helpdesks](https://www.nfdi.de/community-workshop-helpdesk-vernetzung/) took place on November 20th and 21st, 2023, at the University of Duisburg-Essen. The event, which included participants beyond the DataPLANT Consortium, saw the gathering of professionals from institutional FDM contact points, NFDI helpdesks, and support initiatives from FDM state initiatives. diff --git a/src/content/news/2023-11-29-dataplant-members-participated-in-the-first-nfdi4bioimage-ta3-hackathon-at-cecad-at-the-university-of-cologne.md b/src/content/news/2023-11-29-dataplant-members-participated-in-the-first-nfdi4bioimage-ta3-hackathon-at-cecad-at-the-university-of-cologne.md index 5d730821..0bed4214 100644 --- a/src/content/news/2023-11-29-dataplant-members-participated-in-the-first-nfdi4bioimage-ta3-hackathon-at-cecad-at-the-university-of-cologne.md +++ b/src/content/news/2023-11-29-dataplant-members-participated-in-the-first-nfdi4bioimage-ta3-hackathon-at-cecad-at-the-university-of-cologne.md @@ -1,7 +1,7 @@ --- date: 2023-11-29 title: DataPLANT members participated in the first NFDI4BIOIMAGE - TA3-Hackathon at CECAD at the University of Cologne -previewText: All participants from various Task Areas (TAs) of NFDI4BIOIMAGE and Heinrich Lukas Weil from DataPLANT actively contributed via presentations, hacking, discussion and documentation on four topics. These correspond to various measures in TA3 (and TA1 & TA5) of NFDI4BIOIMAGE comprising OMERO-ARC interoperability, REMBI and mapping as well as the Neuroglancer... +description: All participants from various Task Areas (TAs) of NFDI4BIOIMAGE and Heinrich Lukas Weil from DataPLANT actively contributed via presentations, hacking, discussion and documentation on four topics. These correspond to various measures in TA3 (and TA1 & TA5) of NFDI4BIOIMAGE comprising OMERO-ARC interoperability, REMBI and mapping as well as the Neuroglancer... --- All participants from various Task Areas (TAs) of [NFDI4BIOIMAGE](https://nfdi4bioimage.de/en/start/) and Heinrich Lukas Weil from DataPLANT actively contributed via presentations, hacking, discussion and documentation on four topics. These correspond to various measures in TA3 (and TA1 & TA5) of NFDI4BIOIMAGE comprising [OMERO](https://www.openmicroscopy.org/omero/)-[ARC](https://zenodo.org/badge/latestdoi/380251011) interoperability, REMBI and mapping as well as the Neuroglancer. diff --git a/src/content/news/2023-12-01-contributions-of-dataplant-at-the-e-science-tage-2023-now-available.md b/src/content/news/2023-12-01-contributions-of-dataplant-at-the-e-science-tage-2023-now-available.md index fcb976f4..2b4ec9b6 100644 --- a/src/content/news/2023-12-01-contributions-of-dataplant-at-the-e-science-tage-2023-now-available.md +++ b/src/content/news/2023-12-01-contributions-of-dataplant-at-the-e-science-tage-2023-now-available.md @@ -1,7 +1,7 @@ --- date: 2023-12-01 title: Contributions of DataPLANT at the E-Science Tage 2023 now available -previewText: We already reported the participation of DataPLANT at this year's E-Science Tage in Heidelberg. Now the proceedings and indidividual papers are publicly available online. Research in the digital transformation requires a coordinated environment. The E-Science Days 2023 offered those responsible and interested the opportunity to exchange ideas and network on current developments in the field of research data management. With the theme "Empower Your Research - Preserve Your Data", the focus... +description: We already reported the participation of DataPLANT at this year's E-Science Tage in Heidelberg. Now the proceedings and indidividual papers are publicly available online. Research in the digital transformation requires a coordinated environment. The E-Science Days 2023 offered those responsible and interested the opportunity to exchange ideas and network on current developments in the field of research data management. With the theme "Empower Your Research - Preserve Your Data", the focus... --- We already reported the [participation of DataPLANT](https://nfdi4plants.org/content/news/2023-03-03-participation-of-dataplant-at-the-est-2023.html) at this year's [E-Science Tage in Heidelberg](https://e-science-tage.de/startseite_2023). Now the [proceedings](https://doi.org/10.11588/heibooks.1288) and indidividual papers are publicly available online. Research in the digital transformation requires a coordinated environment. The E-Science Days 2023 offered those responsible and interested the opportunity to exchange ideas and network on current developments in the field of research data management. With the theme "Empower Your Research - Preserve Your Data", the focus was on the sustainable storage and interdisciplinary and international availability of research data. The [next conference](https://e-science-tage.de/de/startseite) just got announced for March 2025. diff --git a/src/content/news/2023-12-12-dataplant-and-nfdi4bioimage-discussing-local-and-nfdi-strategies-on-sustainability.md b/src/content/news/2023-12-12-dataplant-and-nfdi4bioimage-discussing-local-and-nfdi-strategies-on-sustainability.md index ad50c47c..34b63638 100644 --- a/src/content/news/2023-12-12-dataplant-and-nfdi4bioimage-discussing-local-and-nfdi-strategies-on-sustainability.md +++ b/src/content/news/2023-12-12-dataplant-and-nfdi4bioimage-discussing-local-and-nfdi-strategies-on-sustainability.md @@ -1,7 +1,7 @@ --- date: 2023-12-12 title: DataPLANT and NFDI4BIOIMAGE discussing local and NFDI strategies on sustainability -previewText: Exchange of ideas on how to integrate NFDI (National Research Data Infrastructure) and enhance Research Data Management (RDM) services at local institutions becomes a topic of rising importance not only for DataPLANT and NFDI4BIOIMAGE. Addressing the challenge of spreading the NFDI concept across large research institutions with diverse involvement in the different subject and method specific consortia is crucial. Grant proposals of upcoming research projects should tailor their approach towards RDM by considering discipline-specific NFDI consortia... +description: Exchange of ideas on how to integrate NFDI (National Research Data Infrastructure) and enhance Research Data Management (RDM) services at local institutions becomes a topic of rising importance not only for DataPLANT and NFDI4BIOIMAGE. Addressing the challenge of spreading the NFDI concept across large research institutions with diverse involvement in the different subject and method specific consortia is crucial. Grant proposals of upcoming research projects should tailor their approach towards RDM by considering discipline-specific NFDI consortia... --- Exchange of ideas on how to integrate [NFDI (National Research Data Infrastructure)](https://www.nfdi.de/) and enhance Research Data Management (RDM) services at local institutions becomes a topic of rising importance not only for DataPLANT and [NFDI4BIOIMAGE](https://nfdi4bioimage.de/en/start/). Addressing the challenge of spreading the NFDI concept across large research institutions with diverse involvement in the different subject and method specific consortia is crucial. Grant proposals of upcoming research projects should tailor their approach towards RDM by considering discipline-specific NFDI consortia. Additionally, it is essential to empower infrastructure providers, enabling them to comprehend and seamlessly integrate NFDI services at the local level. Here, the [Heinrich-Heine-University Düsseldorf](https://www.hhu.de/) has taken a proactive step by establishing RDM representatives for each faculty, a model that is currently still to be implemented at the [Albert-Ludwigs-University Freiburg](https://uni-freiburg.de/). diff --git a/src/content/news/2023-12-19-considerations-on-challenges-in-connection-with-research-software.md b/src/content/news/2023-12-19-considerations-on-challenges-in-connection-with-research-software.md index c29b48df..9fa5d105 100644 --- a/src/content/news/2023-12-19-considerations-on-challenges-in-connection-with-research-software.md +++ b/src/content/news/2023-12-19-considerations-on-challenges-in-connection-with-research-software.md @@ -1,7 +1,7 @@ --- date: 2023-12-19 title: Considerations on challenges in connection with research software -previewText: 'As part of the BioDATEN Science Data Center associated with DataPLANT, an assessment of research software was developed together with the other Science Data Centers in the FDM working group in Baden-Württemberg and has just been published on "Bausteine FDM" online journal.' +description: 'As part of the BioDATEN Science Data Center associated with DataPLANT, an assessment of research software was developed together with the other Science Data Centers in the FDM working group in Baden-Württemberg and has just been published on "Bausteine FDM" online journal.' --- As part of the BioDATEN Science Data Center associated with DataPLANT, an assessment of research software was developed together with the other Science Data Centers in the FDM working group in Baden-Württemberg and has just been published on ["Bausteine FDM"](https://bausteine-fdm.de/) online journal: diff --git a/src/content/news/2024-02-06-dataplant-at-the-dfg-mid-term-symposium-on-the-nfdi.md b/src/content/news/2024-02-06-dataplant-at-the-dfg-mid-term-symposium-on-the-nfdi.md index 69657f42..b2de3a69 100644 --- a/src/content/news/2024-02-06-dataplant-at-the-dfg-mid-term-symposium-on-the-nfdi.md +++ b/src/content/news/2024-02-06-dataplant-at-the-dfg-mid-term-symposium-on-the-nfdi.md @@ -1,7 +1,7 @@ --- date: 2024-02-06 title: DataPLANT at the DFG mid-term symposium on the NFDI -previewText: The recent DFG mid-term symposium in Bonn provided a platform for DataPLANT to showcase its progress and objectives in advancing data management practices within the realm of plant science. With representatives including Cristina Martins Rodrigues as project coordinator, Stefanie Weidtkamp-Peters representing both the plant research community and being head of NFDI4BioImaging, Björn Usadel as the metadata and standardization specialist, Timo Mühlhaus for application development and Data Steward... +description: The recent DFG mid-term symposium in Bonn provided a platform for DataPLANT to showcase its progress and objectives in advancing data management practices within the realm of plant science. With representatives including Cristina Martins Rodrigues as project coordinator, Stefanie Weidtkamp-Peters representing both the plant research community and being head of NFDI4BioImaging, Björn Usadel as the metadata and standardization specialist, Timo Mühlhaus for application development and Data Steward... image: /src/assets/images/news/ZBS3.jpeg --- The recent DFG mid-term symposium in Bonn provided a platform for DataPLANT to showcase its progress and objectives in advancing data management practices within the realm of plant science. With representatives including Cristina Martins Rodrigues as project coordinator, Stefanie Weidtkamp-Peters representing both the plant research community and being head of NFDI4BioImaging, Björn Usadel as the metadata and standardization specialist, Timo Mühlhaus for application development and Data Steward coordinator, and Dirk von Suchodoletz as the speaker, the symposium served as a pivotal moment to share insights and strategies. diff --git a/src/content/news/2024-02-16-nfdi-wide-workshop-on-the-development-and-implementation-of-basic-services-and-dataplants-contribution.md b/src/content/news/2024-02-16-nfdi-wide-workshop-on-the-development-and-implementation-of-basic-services-and-dataplants-contribution.md index 4093642d..5c0dda88 100644 --- a/src/content/news/2024-02-16-nfdi-wide-workshop-on-the-development-and-implementation-of-basic-services-and-dataplants-contribution.md +++ b/src/content/news/2024-02-16-nfdi-wide-workshop-on-the-development-and-implementation-of-basic-services-and-dataplants-contribution.md @@ -1,7 +1,7 @@ --- date: 2024-02-16 title: NFDI wide Workshop on the development and implementation of basic services (Base4NFDI) and DataPLANT's contribution -previewText: DataPLANT took part in an online workshop on the development and implementation of basic services coordinated by the NFDI. The objectives of the workshop held by Base4NFDI the 16th February online was to define the future development of basic services and to agree upon how consortia could or should commit to adopting a (potential) core service during the integration phase. With first service reaching phase three it needs to be clarified how the commitment should look like. For this a discussion on... +description: DataPLANT took part in an online workshop on the development and implementation of basic services coordinated by the NFDI. The objectives of the workshop held by Base4NFDI the 16th February online was to define the future development of basic services and to agree upon how consortia could or should commit to adopting a (potential) core service during the integration phase. With first service reaching phase three it needs to be clarified how the commitment should look like. For this a discussion on... --- DataPLANT took part in an online workshop on the development and implementation of basic services coordinated by the NFDI. The objectives of the workshop held by Base4NFDI the 16th February online was to define the future development of basic services and to agree upon how consortia could or should commit to adopting a (potential) core service during the integration phase. With first service reaching phase three it needs to be clarified how the commitment should look like. For this a discussion on the coordination and decision making process was held as well as concrete ideas on how to ensure commitment to collaborating on core services generated. The considerations were refined in the breakout sessions. diff --git a/src/content/news/2024-02-23-madland-domps-seminar.md b/src/content/news/2024-02-23-madland-domps-seminar.md index ca726c78..79918a2f 100644 --- a/src/content/news/2024-02-23-madland-domps-seminar.md +++ b/src/content/news/2024-02-23-madland-domps-seminar.md @@ -1,7 +1,7 @@ --- date: 2024-02-23 title: MAdLand presents at DOMPS Plant Science Seminar -previewText: Deepti Varshney and Saskia Hiltemann from the University of Freiburg and MAdLand consortium presented a talk entitled "MAdLand Resources & Tools" at the Plant Science Seminar organised by the Department of Molecular Plant Sciences in Freiburg. In this presentation they highlighted the close collaborations between MAdLAnd and DataPLANT. +description: Deepti Varshney and Saskia Hiltemann from the University of Freiburg and MAdLand consortium presented a talk entitled "MAdLand Resources & Tools" at the Plant Science Seminar organised by the Department of Molecular Plant Sciences in Freiburg. In this presentation they highlighted the close collaborations between MAdLAnd and DataPLANT. --- ![The MAdLand logo with the text “Molecular Adaptation to Land: plant evolution to change”](/src/assets/images/news/madland-logo.png){: style="float:right"} diff --git a/src/content/news/2024-02-29-dataplant-at-gopmf-kickoff-meeting-in-muenster.md b/src/content/news/2024-02-29-dataplant-at-gopmf-kickoff-meeting-in-muenster.md index 4548d98e..fbe684de 100644 --- a/src/content/news/2024-02-29-dataplant-at-gopmf-kickoff-meeting-in-muenster.md +++ b/src/content/news/2024-02-29-dataplant-at-gopmf-kickoff-meeting-in-muenster.md @@ -1,7 +1,7 @@ --- date: 2024-02-29 title: DataPLANT at GoPMF Kickoff Meeting in Münster -previewText: Outreach and the establishment of new collaborations is of great importance for DataPLANT to involve our community in the constant improvement of our tools and service landscape. From February 28th to 29th 2024, Angela Kranz was present in Münster at the Kickoff of the DFG research unit GoPMF to introduce the tools and service landscape of DataPLANT for the management of research data that will be generated by the project... +description: Outreach and the establishment of new collaborations is of great importance for DataPLANT to involve our community in the constant improvement of our tools and service landscape. From February 28th to 29th 2024, Angela Kranz was present in Münster at the Kickoff of the DFG research unit GoPMF to introduce the tools and service landscape of DataPLANT for the management of research data that will be generated by the project... --- Outreach and the establishment of new collaborations is of great importance for DataPLANT to involve our community in the constant improvement of our tools and service landscape. From February 28th to 29th 2024, Angela Kranz was present in Münster at the Kickoff of the DFG research unit GoPMF to introduce the tools and service landscape of DataPLANT for the management of research data that will be generated by the project. Overall, the presentation received positive feedback and led to interesting follow-up discussions. \ No newline at end of file diff --git a/src/content/news/2024-03-07-madland-mbp-conference.md b/src/content/news/2024-03-07-madland-mbp-conference.md index f3e43d47..a655c07e 100644 --- a/src/content/news/2024-03-07-madland-mbp-conference.md +++ b/src/content/news/2024-03-07-madland-mbp-conference.md @@ -1,7 +1,7 @@ --- date: 2024-03-07 title: MAdLand presents at Molecular Biology of Plants (MBP) Conference -previewText: Deepti Varshney and Saskia Hiltemann from the University of Freiburg and the MAdLand consortium presented a poster entitled "MAdLand Resources & Tools" at the MBP2024 conference in Hennef. In this poster presentation they highlighted the close collaborations between MAdLAnd and DataPLANT. +description: Deepti Varshney and Saskia Hiltemann from the University of Freiburg and the MAdLand consortium presented a poster entitled "MAdLand Resources & Tools" at the MBP2024 conference in Hennef. In this poster presentation they highlighted the close collaborations between MAdLAnd and DataPLANT. --- ![The MAdLand logo with the text “Molecular Adaptation to Land: plant evolution to change”](/src/assets/images/news/madland-logo.png){: style="float:right"} diff --git a/src/content/news/2024-03-14-madland-dataplant-collab.md b/src/content/news/2024-03-14-madland-dataplant-collab.md index 512ee3d7..9e81d122 100644 --- a/src/content/news/2024-03-14-madland-dataplant-collab.md +++ b/src/content/news/2024-03-14-madland-dataplant-collab.md @@ -1,7 +1,7 @@ --- date: 2024-03-14 title: Collaborative ties between DataPLANT and the MAdLand consortium -previewText: MAdLand (Molecular Adaptation to Land) is a DFG-priority programme research consortium exploring the molecular mechanism behind the transition of plant life from water to land. DataPLANT and MAdLand share common goals in terms of FAIR science, and are committed to close collaboration and open sharing of tools and resources. +description: MAdLand (Molecular Adaptation to Land) is a DFG-priority programme research consortium exploring the molecular mechanism behind the transition of plant life from water to land. DataPLANT and MAdLand share common goals in terms of FAIR science, and are committed to close collaboration and open sharing of tools and resources. --- diff --git a/src/content/news/2024-04-03_discussing-gitlab-as-a-central-nfdi-service-for-code-and-data.md b/src/content/news/2024-04-03_discussing-gitlab-as-a-central-nfdi-service-for-code-and-data.md index 82c22c9a..a6388caa 100644 --- a/src/content/news/2024-04-03_discussing-gitlab-as-a-central-nfdi-service-for-code-and-data.md +++ b/src/content/news/2024-04-03_discussing-gitlab-as-a-central-nfdi-service-for-code-and-data.md @@ -1,7 +1,7 @@ --- date: 2024-04-03 title: Discussing GitLab as a central NFDI service for code and data -previewText: "DataPLANT participated in the RSE meeting on March 25th to present “GitLab based DataHUB for RDM: Learning from open source software development”. The research software engineers working group is part of the common infrastructure section of the NFDI that meets monthly to discuss software related aspects..." +description: "DataPLANT participated in the RSE meeting on March 25th to present “GitLab based DataHUB for RDM: Learning from open source software development”. The research software engineers working group is part of the common infrastructure section of the NFDI that meets monthly to discuss software related aspects..." --- DataPLANT participated in the RSE meeting on March 25th to present “GitLab based DataHUB for RDM: Learning from open source software development”. The research software engineers working group is part of the common infrastructure section of the NFDI that meets monthly to discuss software related aspects ([Link](https://doi.org/10.5281/zenodo.6483449)). The collaboration of researchers locally or worldwide ranging from single researchers over a group or a lab up to cross institutional and disciplinary cooperation requires suitable working environments. Data hubs in the form of science gateways - usually abstracting from just locally shared storage resources - are discussed and explored for quite some time. The DataPLANT team found that Git and the GitLab framework met key needs for a data hub in RDM. These needs included versioning, group collaboration, and easy access management. For this, Git provides versioning, which makes it possible to track and undo changes within a Git repository. To store the repository data, GitLFS is used, especially for large files (see [Link](https://doi.org/10.5281/zenodo.10021180)). While it was en vogue to propose and develop discipline specific gateways, we suggest to rely on well-established standard software frameworks instead. Research data considered over the entire data life cycle and closely related activities like annotation, versioning and sharing has a lot in common with (open source) software development. GitLab itself adds features for fine grained access management, allowing users to form collaborative groups that they can manage themselves, fostering easy and flexible collaboration across institutions. GitLab gives detailed access control, allowing users to create and manage their own collaboration groups, which helps collaboration across organizations happen easily and flexibly. diff --git a/src/content/news/2024-04-05_request-for-support-unconference-session-at-the-eosc-symposium-2024.md b/src/content/news/2024-04-05_request-for-support-unconference-session-at-the-eosc-symposium-2024.md index 5f69d88e..0cec34e7 100644 --- a/src/content/news/2024-04-05_request-for-support-unconference-session-at-the-eosc-symposium-2024.md +++ b/src/content/news/2024-04-05_request-for-support-unconference-session-at-the-eosc-symposium-2024.md @@ -1,7 +1,7 @@ --- date: 2024-04-05 title: "Request for support: Unconference Session \"towards a barrier-free research data management in European Plant Science\" at the EOSC Symposium 2024" -previewText: The EOSC Symposium 2024 (October 21 - 23) is vital to orchestrate activities for research data management (RDM) in Europe. Because of the strong partnership of EOSC and German NFDI program the symposium is a perfect place to mesh infrastructures, architectures, services, use cases, standards and train activities. +description: The EOSC Symposium 2024 (October 21 - 23) is vital to orchestrate activities for research data management (RDM) in Europe. Because of the strong partnership of EOSC and German NFDI program the symposium is a perfect place to mesh infrastructures, architectures, services, use cases, standards and train activities. --- The [EOSC Symposium 2024](https://eosc.eu/symposium2024/) (October 21 - 23) is vital to orchestrate activities for research data management (RDM) in Europe. Because of the strong partnership of EOSC and German NFDI program the symposium is a perfect place to mesh infrastructures, architectures, services, use cases, standards and train activities. DataPLANT teamed with further NFDI consortia to suggest an "Unconference Session - Towards a barrier-free research data management in European Plant Science". diff --git a/src/content/news/2024-04-09-planning-beyond-2028-nfdi-taskforce-governance-and-sustainability.md b/src/content/news/2024-04-09-planning-beyond-2028-nfdi-taskforce-governance-and-sustainability.md index 2f1c7c3b..cf5bd4b8 100644 --- a/src/content/news/2024-04-09-planning-beyond-2028-nfdi-taskforce-governance-and-sustainability.md +++ b/src/content/news/2024-04-09-planning-beyond-2028-nfdi-taskforce-governance-and-sustainability.md @@ -1,7 +1,7 @@ --- date: 2024-04-09 title: "Planning beyond 2028: NFDI Taskforce Governance and Sustainability" -previewText: Starting for the follow up grant application of the DataPLANT consortium we are joining forces with other consortia to shape the future vision and development of the NFDI. On the 9th April the second online meeting of the Taskforce Governance and Sustainability was held. DataPLANT is becoming actively involved in the Taskforce Governance and Sustainability of the NFDI. The taskforce is currently working on formulating a joint position paper that outlines how the NFDI should evolve from the perspective... +description: Starting for the follow up grant application of the DataPLANT consortium we are joining forces with other consortia to shape the future vision and development of the NFDI. On the 9th April the second online meeting of the Taskforce Governance and Sustainability was held. DataPLANT is becoming actively involved in the Taskforce Governance and Sustainability of the NFDI. The taskforce is currently working on formulating a joint position paper that outlines how the NFDI should evolve from the perspective... --- diff --git a/src/content/news/2024-04-10-dataplant-hosted-hands-on-symposium.md b/src/content/news/2024-04-10-dataplant-hosted-hands-on-symposium.md index 694df086..a21e032a 100644 --- a/src/content/news/2024-04-10-dataplant-hosted-hands-on-symposium.md +++ b/src/content/news/2024-04-10-dataplant-hosted-hands-on-symposium.md @@ -1,7 +1,7 @@ --- date: 2024-04-10 title: DataPLANT hosted Hands-On Symposium on ARC communication and interoperability -previewText: The three day symposium on ARC communication and interoperability took place in Boppard. Besides several DataPLANT colleagues there were also participants from FAIRAGRO, NFDI4BIOIMAGE and NFDI4BIODIVERSITY... +description: The three day symposium on ARC communication and interoperability took place in Boppard. Besides several DataPLANT colleagues there were also participants from FAIRAGRO, NFDI4BIOIMAGE and NFDI4BIODIVERSITY... --- The three day symposium on ARC communication and interoperability took place in Boppard. Besides several DataPLANT colleagues there were also participants from FAIRAGRO, NFDI4BIOIMAGE and NFDI4BIODIVERSITY. The conference created a space for experts of the different NFDIs to interact, discuss and implement, leading to better mutual understanding and greater interoperability between standards and toolings used. After talks and discussions surrounding the ARC ecosystem e.g. how ARCs interoperate with other research data standards implemented in different NFDIs there was hands-on work and collaborative hacking. diff --git a/src/content/news/2024-04-16-nfdi-statement-on-the-key-points-paper-of-the-federal-ministry-of-education-and-research.md b/src/content/news/2024-04-16-nfdi-statement-on-the-key-points-paper-of-the-federal-ministry-of-education-and-research.md index c4cc9975..fc4b1edc 100644 --- a/src/content/news/2024-04-16-nfdi-statement-on-the-key-points-paper-of-the-federal-ministry-of-education-and-research.md +++ b/src/content/news/2024-04-16-nfdi-statement-on-the-key-points-paper-of-the-federal-ministry-of-education-and-research.md @@ -1,7 +1,7 @@ --- date: 2024-04-16 title: NFDI Statement on the key points paper of the Federal Ministry of Education and Research -previewText: DataPLANT was involved in the creation of the statement on the key points paper of the Federal Ministry of Education and Research on the Research Data Act. The consortium welcomes the objectives outlined in the BMBF key points paper on the Research Data Act to improve access to scientific data in general. To this end, the National Research Data Infrastructure consortium adopted a statement... +description: DataPLANT was involved in the creation of the statement on the key points paper of the Federal Ministry of Education and Research on the Research Data Act. The consortium welcomes the objectives outlined in the BMBF key points paper on the Research Data Act to improve access to scientific data in general. To this end, the National Research Data Infrastructure consortium adopted a statement... --- DataPLANT was involved in the creation of the statement on the key points paper of the Federal Ministry of Education and Research (BMBF) on the Research Data Act. The consortium welcomes the objectives outlined in the BMBF key points paper on the Research Data Act (FDG) to improve access to scientific data in general. To this end, the National Research Data Infrastructure (NFDI) consortium adopted a [statement](https://www.nfdi.de/statement-zum-eckpunktepapier-des-bundesministeriums-fuer-bildung-und-forschung-bmbf-zum-forschungsdatengesetz/) on April 12, 2024. diff --git a/src/content/news/2024-04-17-dataplant-participated-in-the-recent-common-infrastructure-online-assembly.md b/src/content/news/2024-04-17-dataplant-participated-in-the-recent-common-infrastructure-online-assembly.md index b05794d5..0b93b074 100644 --- a/src/content/news/2024-04-17-dataplant-participated-in-the-recent-common-infrastructure-online-assembly.md +++ b/src/content/news/2024-04-17-dataplant-participated-in-the-recent-common-infrastructure-online-assembly.md @@ -1,7 +1,7 @@ --- date: 2024-04-17 title: DataPLANT participated in the recent Common Infrastructure Online Assembly -previewText: DataPLANT participated in the recent Common Infrastructure Online Assembly, the primary coordination platform for infrastructure development, held on the 17th April. In this setting all NFDI consortia convene to discuss shared interests on infrastructure development, joint services and the advancement of Base4NFDI. During the assembly, discussions revolved around various topics. DataPLANT provided input on a relevant topic, the shared by many required of a versioning software solution, a matter to be addressed by the consortia... +description: DataPLANT participated in the recent Common Infrastructure Online Assembly, the primary coordination platform for infrastructure development, held on the 17th April. In this setting all NFDI consortia convene to discuss shared interests on infrastructure development, joint services and the advancement of Base4NFDI. During the assembly, discussions revolved around various topics. DataPLANT provided input on a relevant topic, the shared by many required of a versioning software solution, a matter to be addressed by the consortia... --- DataPLANT participated in the recent [Common Infrastructure](https://www.nfdi.de/section-infra/) Online Assembly, the primary coordination platform for infrastructure development, held on the 17th April. In this setting all NFDI consortia convene to discuss shared interests on infrastructure development, joint services and the advancement of Base4NFDI. During the assembly, discussions revolved around various topics. DataPLANT provided input on a relevant topic, the shared by many required of a versioning software solution, a matter to be addressed by the consortia. diff --git a/src/content/news/2024-04-26_cross_consortium_exchange_nfdi4biodiversity_all_hands_conference.md b/src/content/news/2024-04-26_cross_consortium_exchange_nfdi4biodiversity_all_hands_conference.md index 6210d8be..79820f00 100644 --- a/src/content/news/2024-04-26_cross_consortium_exchange_nfdi4biodiversity_all_hands_conference.md +++ b/src/content/news/2024-04-26_cross_consortium_exchange_nfdi4biodiversity_all_hands_conference.md @@ -1,7 +1,7 @@ --- date: 2024-04-26 title: Cross consortium exchange - NFDI4Biodiversity All Hands Conference in Munich -previewText: From April 24 to 26 2024, the NFDI4Biodiversity All Hands Conference - the central meeting for all members of the project - took place on the premises of the Directorate General of the State Archives in Munich. The conference focused on the concrete progress made by NFDI4Biodiversity in recent years, as well as the challenges and plans for 2024 and 2025... +description: From April 24 to 26 2024, the NFDI4Biodiversity All Hands Conference - the central meeting for all members of the project - took place on the premises of the Directorate General of the State Archives in Munich. The conference focused on the concrete progress made by NFDI4Biodiversity in recent years, as well as the challenges and plans for 2024 and 2025... --- From April 24 to 26 2024, the [NFDI4Biodiversity All Hands Conference ](https://nfdi4biodiversity.org/de/events/all-hands-conference-2024/) - the central meeting for all members of the project - took place on the premises of the Directorate General of the State Archives in Munich. The conference focused on the concrete progress made by NFDI4Biodiversity in recent years, as well as the challenges and plans for 2024 and 2025. Together, the participants looked at what has already been achieved to improve data availability in the community - and which steps need to be taken next. Of course, this also includes the necessary target definitions for a second funding phase from fall 2025. diff --git a/src/content/news/2024-04-30_software_and_data_management_base4nfdi_proposal.md b/src/content/news/2024-04-30_software_and_data_management_base4nfdi_proposal.md index b31873e4..faa880f4 100644 --- a/src/content/news/2024-04-30_software_and_data_management_base4nfdi_proposal.md +++ b/src/content/news/2024-04-30_software_and_data_management_base4nfdi_proposal.md @@ -1,7 +1,7 @@ --- date: 2024-04-30 title: Software and Data Management - Developing a proposal for Base4NFDI -previewText: Following the presentation at the end of March in the RSE Working Group and the well-attended online session of the Common Infrastructure Section in mid-April, DataPLANT is now in the process of writing a proposal for Base4NFDI with the input to promote a potential joint service. We have been using GitLab in the consortium for some time for our DataHUB,... +description: Following the presentation at the end of March in the RSE Working Group and the well-attended online session of the Common Infrastructure Section in mid-April, DataPLANT is now in the process of writing a proposal for Base4NFDI with the input to promote a potential joint service. We have been using GitLab in the consortium for some time for our DataHUB,... --- Following the presentation at the end of March in the [RSE Working Group](https://doi.org/10.5281/zenodo.6483449) and the well-attended online session of the [Common Infrastructure Section](https://www.nfdi.de/section-infra/) in mid-April, DataPLANT is now in the process of writing a proposal for Base4NFDI with the input to promote a potential joint service. We have been using GitLab in the consortium for some time for our [DataHUB](https://git.nfdi4plants.org/explore), but we also use public (commercial) resources for software development. Sustainability is always a bit of a question here, as is whether companies will change or discontinue such services at some point. The NFDI is so large that it requires its own activities, which are best combined with other ongoing initiatives. diff --git a/src/content/news/2024-05-06_CEPLAS_data_policy.md b/src/content/news/2024-05-06_CEPLAS_data_policy.md index ea6ebee1..e9e07ca1 100644 --- a/src/content/news/2024-05-06_CEPLAS_data_policy.md +++ b/src/content/news/2024-05-06_CEPLAS_data_policy.md @@ -2,7 +2,7 @@ date: 2024-05-06 title: CEPLAS research data policy builds on collaboration with DataPLANT highlight: true -previewText: The first version of the CEPLAS data policy was adopted by the steering committee on February 23rd, 2024. It supports CEPLAS researchers with FAIR data management. We are happy that CEPLAS data management builds on the cooperation with DataPLANT. Research data is organized... +description: The first version of the CEPLAS data policy was adopted by the steering committee on February 23rd, 2024. It supports CEPLAS researchers with FAIR data management. We are happy that CEPLAS data management builds on the cooperation with DataPLANT. Research data is organized... --- The first version of the CEPLAS data policy was adopted by the steering committee on February 23rd, 2024. It supports CEPLAS researchers with FAIR data management. We are happy that CEPLAS data management builds on the cooperation with DataPLANT. Research data is organized in form of [Annotated Research Contexts (ARCs)](https://nfdi4plants.org/content/learn-more/annotated-research-context.html) that are stored and shared via the [PlantDataHub](https://git.nfdi4plants.org/ceplas). diff --git a/src/content/news/2024-05-07_nfdi_communications_circle_meeting_in_braunschweig.md b/src/content/news/2024-05-07_nfdi_communications_circle_meeting_in_braunschweig.md index 7ee979bd..e6190dfb 100644 --- a/src/content/news/2024-05-07_nfdi_communications_circle_meeting_in_braunschweig.md +++ b/src/content/news/2024-05-07_nfdi_communications_circle_meeting_in_braunschweig.md @@ -1,6 +1,6 @@ --- date: 2024-05-07 title: NFDI management circle meets in Braunschweig -previewText: On May 7-8 communicators from various NFDI consortia met at the Helmholtz Centre for Infection Research in Braunschweig. We talked about science communication... +description: On May 7-8 communicators from various NFDI consortia met at the Helmholtz Centre for Infection Research in Braunschweig. We talked about science communication... --- On May 7-8 communicators from various NFDI consortia met at the Helmholtz Centre for Infection Research in Braunschweig. We talked about science communication and Wikidata on the first day. Topic of the second day was the challenge of a NFDI wide communications strategie and how best to implement it. \ No newline at end of file diff --git a/src/content/news/2024-05-28_connecting_helpdesks_in_geo-chem-lifesciences.md b/src/content/news/2024-05-28_connecting_helpdesks_in_geo-chem-lifesciences.md index 29a689bd..9c17953e 100644 --- a/src/content/news/2024-05-28_connecting_helpdesks_in_geo-chem-lifesciences.md +++ b/src/content/news/2024-05-28_connecting_helpdesks_in_geo-chem-lifesciences.md @@ -1,6 +1,6 @@ --- date: 2024-05-28 title: Connecting helpdesks in Geo-Chem-Lifescience -previewText: DataPLANT connected with other consortia from the Geo-Chem-Lifesciences field in Bremen on May 27-28. We discussed helpdesks models and support structures +description: DataPLANT connected with other consortia from the Geo-Chem-Lifesciences field in Bremen on May 27-28. We discussed helpdesks models and support structures --- DataPLANT connected with other consortia from the Geo-Chem-Lifesciences field in Bremen on May 27-28. We discussed helpdesks models and support structures to connect and share experiences. Furthermore, a workflow for future collaborations was developed. Thank you to NFDI4Biodiversity for hosting and to NFDI4BIOIMAGE, NFDI4Chem, NFDI4Earth, NFDI4Health, NFDI4Microbiota and FairAgro for the intensive and productive meeting. We look forward to collaborating more closely in the future. \ No newline at end of file diff --git a/src/content/news/2024-06-04_nfdi_management_circle_meeting_in_freiburg.md b/src/content/news/2024-06-04_nfdi_management_circle_meeting_in_freiburg.md index e371db43..8929ffd1 100644 --- a/src/content/news/2024-06-04_nfdi_management_circle_meeting_in_freiburg.md +++ b/src/content/news/2024-06-04_nfdi_management_circle_meeting_in_freiburg.md @@ -1,6 +1,6 @@ --- date: 2024-06-04 title: NFDI Management Circle meets in Freiburg -previewText: On June 4-5 the NFDI Management circle met in Freiburg. We discussed workflows and collaborations within the NFDI as well as between and within our consortia... +description: On June 4-5 the NFDI Management circle met in Freiburg. We discussed workflows and collaborations within the NFDI as well as between and within our consortia... --- On June 4-5 the NFDI Management circle met in Freiburg. We discussed workflows and collaborations within the NFDI as well as between and within our consortia. NFDIMatwerk organized the event. DataPLANT was involved in a slot about the DFG data sheet. We used [Mentimeter](https://www.mentimeter.com/de-DE) to get feedback from our fellow coordinators on the dos and donts of collecting feedback from partner institutions. \ No newline at end of file diff --git a/src/content/news/2024-06-05_meeting_coordinators_PI_developers_DataPLANT_NFDI4BIOIMAGE.md b/src/content/news/2024-06-05_meeting_coordinators_PI_developers_DataPLANT_NFDI4BIOIMAGE.md index e376f058..1559f8cf 100644 --- a/src/content/news/2024-06-05_meeting_coordinators_PI_developers_DataPLANT_NFDI4BIOIMAGE.md +++ b/src/content/news/2024-06-05_meeting_coordinators_PI_developers_DataPLANT_NFDI4BIOIMAGE.md @@ -1,7 +1,7 @@ --- date: 2024-06-05 title: Meeting of Coordinators and PIs with Developers in DataPLANT and NFDI4BIOIMAGE Projects -previewText: In the beginning of June we had a lively discussion on the current status of development in Virtual Infrastructure ontop of OpenStack and options for tighter collaborations between NFDI consortia following the Management Circle meeting of the NFDI in Freiburg. The exchange focused on... +description: In the beginning of June we had a lively discussion on the current status of development in Virtual Infrastructure ontop of OpenStack and options for tighter collaborations between NFDI consortia following the Management Circle meeting of the NFDI in Freiburg. The exchange focused on... --- In the beginning of June we had a lively discussion on the current status of development in Virtual Infrastructure ontop of OpenStack and options for tighter collaborations between NFDI consortia following the Management Circle meeting of the NFDI in Freiburg. The exchange focused on the status of Open Source VDI development in Task Area 6 lead by Freiburg and how to proceed in the near future. The actual development in the VDI is primarily advanced in four aspects: 1. Development of a Common Access Gateway: Facilitating unified access to all VDI resources in the cloud, including a web page frontend to use prepared desktop environments customized to user requirements. diff --git a/src/content/news/2024-06-18_dataplant_letter_of_intent.md b/src/content/news/2024-06-18_dataplant_letter_of_intent.md index a5f6783c..96c43aa1 100644 --- a/src/content/news/2024-06-18_dataplant_letter_of_intent.md +++ b/src/content/news/2024-06-18_dataplant_letter_of_intent.md @@ -2,7 +2,7 @@ date: 2024-06-18 title: DataPLANT applies for continuation within the scope of the 2nd funding phase of the NFDI highligh: true -previewText: On June 18 2024, DataPLANT sent the letter of intent to the DFG, which is the prerequisite for submitting a follow-up proposal. We plan to largely retain the structure of the task areas, but make adjustments in a few areas. We are aiming to involve the community more closely, following the reviewers' recommendations for focus and consolidation. For this reason, the community has been expanded regarding the number of participants and participating institutions. It is intended to provide geostrategic coverage and data steward support... +description: On June 18 2024, DataPLANT sent the letter of intent to the DFG, which is the prerequisite for submitting a follow-up proposal. We plan to largely retain the structure of the task areas, but make adjustments in a few areas. We are aiming to involve the community more closely, following the reviewers' recommendations for focus and consolidation. For this reason, the community has been expanded regarding the number of participants and participating institutions. It is intended to provide geostrategic coverage and data steward support... --- On June 18 2024, DataPLANT sent the letter of intent to the DFG, which is the prerequisite for submitting a follow-up proposal. We plan to largely retain the structure of the task areas, but make adjustments in a few areas. We are aiming to involve the community more closely, following the reviewers' recommendations for focus and consolidation. For this reason, the community has been expanded regarding the number of participants and participating institutions. It is intended to provide geostrategic coverage and data steward support across Germany for support and assistance. We also want to take up the ongoing developments in the NFDI with regard to basic services and network as well as coordinate more closely with the other life science consortia and tackle certain tasks together. To ensure adherence to the community needs, the common NFDI goals and the reviewer comments, DataPLANT will establish focus circles that span all task areas, facilitating the implementation of overarching objectives. These focus circles comprise Education & Best Practices, Community Interaction, Open Engagement & Sustainability, and (Inter)National Integration. They will enhance communication and management, ensuring that goals are competently supported by experts from each task area working together. diff --git a/src/content/news/2024-07-29-nfdi-collaborations.md b/src/content/news/2024-07-29-nfdi-collaborations.md index 75b2e8e6..25f369f1 100644 --- a/src/content/news/2024-07-29-nfdi-collaborations.md +++ b/src/content/news/2024-07-29-nfdi-collaborations.md @@ -1,7 +1,7 @@ --- date: 2024-07-29 title: Second overview of NFDI collaborations published -previewText: The National Research Data Infrastructure (NFDI) in Germany has established itself and now comprises 26 consortia covering various disciplines. The main aim of the NFDI is to establish a cross-disciplinary research data infrastructure and to make scientific research more efficient. The initiative thus contributes to strengthening the research landscape in Germany and creates a solid foundation for future scientific breakthroughs. An overview from January 2023 described the extensive collaborative activities... +description: The National Research Data Infrastructure (NFDI) in Germany has established itself and now comprises 26 consortia covering various disciplines. The main aim of the NFDI is to establish a cross-disciplinary research data infrastructure and to make scientific research more efficient. The initiative thus contributes to strengthening the research landscape in Germany and creates a solid foundation for future scientific breakthroughs. An overview from January 2023 described the extensive collaborative activities... highlight: false --- The National Research Data Infrastructure (NFDI) in Germany has established itself and now comprises 26 consortia covering various disciplines. The main aim of the NFDI is to establish a cross-disciplinary research data infrastructure and to make scientific research more efficient. The initiative thus contributes to strengthening the research landscape in Germany and creates a solid foundation for future scientific breakthroughs. diff --git a/src/content/news/2024-08-07-base4nfdi-user-conference.md b/src/content/news/2024-08-07-base4nfdi-user-conference.md index f704f7b2..6d596ee7 100644 --- a/src/content/news/2024-08-07-base4nfdi-user-conference.md +++ b/src/content/news/2024-08-07-base4nfdi-user-conference.md @@ -1,7 +1,7 @@ --- date: 2024-08-07 title: Notification on accepted contributions to the Base4NFDI User Conference -previewText: DataPLANT is among the initiators and strong supporters of Base4NFDI, actively embracing joint efforts on infrastructure development. Thus we contributed to the recent call-for-participation to the first Base4NFDI User Conference held in Berlin in November 2024. This two-day event aims to showcase basic services... +description: DataPLANT is among the initiators and strong supporters of Base4NFDI, actively embracing joint efforts on infrastructure development. Thus we contributed to the recent call-for-participation to the first Base4NFDI User Conference held in Berlin in November 2024. This two-day event aims to showcase basic services... highlight: false --- DataPLANT is among the initiators and strong supporters of Base4NFDI, actively embracing joint efforts on infrastructure development. Thus we contributed to the recent call-for-participation to the first [Base4NFDI User Conference](https://events.gwdg.de/event/658/) held in Berlin in November 2024. This two-day event aims to showcase basic services, enabling the audience to understand the offerings, explore integration into the NFDI community, and evaluate technical interoperability and local policy implications. The interactive program will cover various services, provide insights from supporting institutions, and address alignment with national and European infrastructures. Our submitted proposals on ["Experiences and status quo of IAM / CAAI in DataPLANT"](https://events.gwdg.de/event/658/contributions/2379/), ["Software repository for the NFDI"](https://events.gwdg.de/event/658/contributions/2386/), ["Cloud based flexible service infrastructure stack for the NFDI"](https://events.gwdg.de/event/658/contributions/2388/) as well as a joint contribution with NFDI4BIOIMAGE were accepted either as short talk or posters. diff --git a/src/content/news/2024-08-13-dataplant-renewal-proposal.md b/src/content/news/2024-08-13-dataplant-renewal-proposal.md index 092e4be3..62bdceb6 100644 --- a/src/content/news/2024-08-13-dataplant-renewal-proposal.md +++ b/src/content/news/2024-08-13-dataplant-renewal-proposal.md @@ -2,7 +2,7 @@ date: 2024-08-13 title: DataPLANT renewal proposal submitted highlight: true -previewText: After several months of preparation, we submitted the DataPLANT proposal for the second funding phase. A big thank you to everyone for their professional and intellectual input, as well as to the writing team for their commitment and perseverance! The fundamental goal of DataPLANT is to foster community participation and engagement by providing support that facilitates research data management (RDM) and FAIR compliance for researchers. It aims to bridge the gap... +description: After several months of preparation, we submitted the DataPLANT proposal for the second funding phase. A big thank you to everyone for their professional and intellectual input, as well as to the writing team for their commitment and perseverance! The fundamental goal of DataPLANT is to foster community participation and engagement by providing support that facilitates research data management (RDM) and FAIR compliance for researchers. It aims to bridge the gap... --- After several months of preparation, we submitted the DataPLANT proposal for the second funding phase. A big thank you to everyone for their professional and intellectual input, as well as to the writing team for their commitment and perseverance! diff --git a/src/content/news/2024-08-30-dataplant-expands-target-community.md b/src/content/news/2024-08-30-dataplant-expands-target-community.md index be59b81c..6a86d7c8 100644 --- a/src/content/news/2024-08-30-dataplant-expands-target-community.md +++ b/src/content/news/2024-08-30-dataplant-expands-target-community.md @@ -1,7 +1,7 @@ --- title: DataPLANT expands the target community and access to servcies through collaboration date: 2024-08-30 -previewText: Initiated with NFDI4Biodiversity in April 2024, DataPLANT seeks new ways to further developments, including the expansion of the target community beyond the initial core of plant research. Thus, multiple life sciences consortia started to discuss forms of collaborations on various levels. Growing cross-consortia synergies will supplant redundancies. A joint group of DataPLANT, NFDI4Biodiversity, and NFDI4Microbiota started to... +description: Initiated with NFDI4Biodiversity in April 2024, DataPLANT seeks new ways to further developments, including the expansion of the target community beyond the initial core of plant research. Thus, multiple life sciences consortia started to discuss forms of collaborations on various levels. Growing cross-consortia synergies will supplant redundancies. A joint group of DataPLANT, NFDI4Biodiversity, and NFDI4Microbiota started to... --- Initiated with [NFDI4Biodiversity](https://www.nfdi4biodiversity.org/en/) in April 2024, DataPLANT seeks new ways to further developments, including the expansion of the target community beyond the initial core of plant research. Thus, multiple life sciences consortia started to discuss forms of collaborations on various levels. Growing cross-consortia synergies will supplant redundancies. A joint group of DataPLANT, NFDI4Biodiversity, and [NFDI4Microbiota](https://nfdi4microbiota.de/) started to align common interests at both technical and organizational levels which will be detailed in a joint Memorandum of Understanding (MoU) being prepared by the consortia. Additionally, [FAIRagro](https://fairagro.net/en/) and [NFDI4BIOIMAGE](https://nfdi4bioimage.de/home/), two consortia which are already interconnected technically through the ARC-RO Crate standardization efforts detailed in bidirectional MoUs, are anticipated to formally join as well. diff --git a/src/content/news/2024-09-05_ipk-new-participant.md b/src/content/news/2024-09-05_ipk-new-participant.md index 1bd42580..f8cb02cb 100644 --- a/src/content/news/2024-09-05_ipk-new-participant.md +++ b/src/content/news/2024-09-05_ipk-new-participant.md @@ -1,7 +1,7 @@ --- date: 2024-09-05 title: IPK Gatersleben joins DataPLANT as participating institution -previewText: Following its community centered strategy DataPLANT took in a new participant broadening its base and now including a non-university research institution in the field of plant biology. The research goals of the Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) are directed towards an efficient and sustainable supply of food, energy and raw materials and thus towards meeting global challenges. At the IPK... +description: Following its community centered strategy DataPLANT took in a new participant broadening its base and now including a non-university research institution in the field of plant biology. The research goals of the Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) are directed towards an efficient and sustainable supply of food, energy and raw materials and thus towards meeting global challenges. At the IPK... highlight: yes --- Following its community centered strategy, DataPLANT took in a new participant broadening its base and now including a non-university research institution in the field of plant biology. The research goals of the Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) are directed towards an efficient and sustainable supply of food, energy and raw materials and thus towards meeting global challenges. At the IPK, the conservation, research and utilisation of the genetic diversity of crop plants in the Federal Ex situ Gene Bank are combined with innovative research approaches in the fields of molecular genetics, genome research, molecular plant biology, systems biology, bioinformatics and modelling. diff --git a/src/content/news/2024-09-18-open-science-festival.md b/src/content/news/2024-09-18-open-science-festival.md index 31af9392..0e788fa1 100644 --- a/src/content/news/2024-09-18-open-science-festival.md +++ b/src/content/news/2024-09-18-open-science-festival.md @@ -2,7 +2,7 @@ date: 2024-09-18 title: DataPLANT participates in the 3. Open Science Festival highlight: true -previewText: "The 3rd Open Science Festival Germany took place at the Johannes Gutenberg University in Mainz from 17-18 September 2024 under the motto Meet, Share, Inspire, Care. It was aimed equally at newcomers, interested parties and experts with the aim to facilitate encounters and dialogue in a wide variety of formats. DataPLANT was actively participating with a market booth together with other NFDI consortia to present The German National Research Data Infrastructure (NFDI)..." +description: "The 3rd Open Science Festival Germany took place at the Johannes Gutenberg University in Mainz from 17-18 September 2024 under the motto Meet, Share, Inspire, Care. It was aimed equally at newcomers, interested parties and experts with the aim to facilitate encounters and dialogue in a wide variety of formats. DataPLANT was actively participating with a market booth together with other NFDI consortia to present The German National Research Data Infrastructure (NFDI)..." --- The 3rd [Open Science Festival](https://converia.uni-mainz.de/frontend/index.php?sub=153) Germany took place at the Johannes Gutenberg University in Mainz from September 17-18, 2024 under the motto Meet, Share, Inspire, Care. It was aimed equally at newcomers, interested parties and experts with the aim to facilitate encounters and dialogue in a wide variety of formats. diff --git a/src/content/news/2024-09-30_phytoakmeter-joins-dataplant.md b/src/content/news/2024-09-30_phytoakmeter-joins-dataplant.md index c1f974e9..dce3fbc9 100644 --- a/src/content/news/2024-09-30_phytoakmeter-joins-dataplant.md +++ b/src/content/news/2024-09-30_phytoakmeter-joins-dataplant.md @@ -1,7 +1,7 @@ --- title: PhytOakmeter and DataPLANT sign Memorandum of Understanding date: 2024-09-30 -previewText: The DFG and SNF funded project PhytOakmeter (FOR 5571) joins forces with DataPLANT to make their research data FAIR - Findable, Accessible, Interoperable, and Reusable. A memorandum of understanding (MoU) was signed to formalize the common goal of establishing a data framework for plant research in compliance with the FAIR data principles and contributing to open science. +description: The DFG and SNF funded project PhytOakmeter (FOR 5571) joins forces with DataPLANT to make their research data FAIR - Findable, Accessible, Interoperable, and Reusable. A memorandum of understanding (MoU) was signed to formalize the common goal of establishing a data framework for plant research in compliance with the FAIR data principles and contributing to open science. --- ![The PhytOakmeter logo](~/assets/images/news/phytoakmeter-logo.jpg) diff --git a/src/content/news/2024-10-02-biodata-mou.md b/src/content/news/2024-10-02-biodata-mou.md index 9fd57473..c2fa9182 100644 --- a/src/content/news/2024-10-02-biodata-mou.md +++ b/src/content/news/2024-10-02-biodata-mou.md @@ -1,7 +1,7 @@ --- date: 2024-10-02 title: DataPLANT, NFDI4Biodiversity and NFDI4Microbiota intensify their collaboration as Biodata Interest Group -previewText: The consortia DataPLANT, NFDI4Biodiversity and NFDI4Microbiota have taken a significant step towards closer cooperation by signing a joint Memorandum of Understanding (MoU). The aim is... +description: The consortia DataPLANT, NFDI4Biodiversity and NFDI4Microbiota have taken a significant step towards closer cooperation by signing a joint Memorandum of Understanding (MoU). The aim is... highlight: true --- diff --git a/src/content/news/2024_07_22_mou-fairagro-dataplant.md b/src/content/news/2024_07_22_mou-fairagro-dataplant.md index d23adbfb..ca45f5d1 100644 --- a/src/content/news/2024_07_22_mou-fairagro-dataplant.md +++ b/src/content/news/2024_07_22_mou-fairagro-dataplant.md @@ -1,7 +1,7 @@ --- date: 2024-07-22 title: FAIRagro and DataPLANT strengthen collaboration -previewText: "FAIRagro and DataPLANT have formalised their collaboration by signing a Memorandum of Understanding (MoU). This partnership aims to address critical needs in the agrosystem and plant research community by fostering joint activities and facilitating seamless interaction between the two consortia. The collaboration focuses on several key objectives..." +description: "FAIRagro and DataPLANT have formalised their collaboration by signing a Memorandum of Understanding (MoU). This partnership aims to address critical needs in the agrosystem and plant research community by fostering joint activities and facilitating seamless interaction between the two consortia. The collaboration focuses on several key objectives..." --- FAIRagro and DataPLANT have formalised their collaboration by signing a Memorandum of Understanding (MoU). This partnership aims to address critical needs in the agrosystem and plant research community by fostering joint activities and facilitating seamless interaction between the two consortia. diff --git a/src/content/news/_README.md b/src/content/news/_README.md index 2b1527f6..ffdcc036 100644 --- a/src/content/news/_README.md +++ b/src/content/news/_README.md @@ -29,7 +29,7 @@ The following metadata must be provided: --- date: 2021-03-17 title: EIL -previewText: NEWSFLASH!!! +description: NEWSFLASH!!! --- # Newsflash diff --git a/src/content/subpage/about.md b/src/content/subpage/about.md index 4a7b259e..e56b6560 100644 --- a/src/content/subpage/about.md +++ b/src/content/subpage/about.md @@ -1,7 +1,7 @@ --- title: About DataPLANT tagline: Towards democratization of plant research. -subtitle: 'Towards democratization of plant research.' +description: 'Towards democratization of plant research.' image: /src/assets/images/subpage/about/about-mainpage.svg styling: titleColor: darkblue diff --git a/src/content/subpage/arc-data-hub.md b/src/content/subpage/arc-data-hub.md index a01959ca..0fa0fca8 100644 --- a/src/content/subpage/arc-data-hub.md +++ b/src/content/subpage/arc-data-hub.md @@ -1,6 +1,6 @@ --- title: ARC Data Hub -subtitle: Further information about the ARC Data Hub concepts and our implementations. +description: Further information about the ARC Data Hub concepts and our implementations. tagline: Share, discover, publish! image: ~/assets/images/subpage/arc-data-hub/arc-data-hub-hero.svg content: diff --git a/src/content/subpage/information.md b/src/content/subpage/information.md index 1a65f605..382ed638 100644 --- a/src/content/subpage/information.md +++ b/src/content/subpage/information.md @@ -1,7 +1,7 @@ --- title: Information about DataPLANT tagline: Stay up-to-date! -subtitle: Latest news, event participation, publications, Knowledge Base – here you’ll find information about DataPLANT’s latest endeavours. +description: Latest news, event participation, publications, Knowledge Base – here you’ll find information about DataPLANT’s latest endeavours. content: - information/news - information/events diff --git a/src/content/subpage/participation.md b/src/content/subpage/participation.md index 7e374506..a63f6cbe 100644 --- a/src/content/subpage/participation.md +++ b/src/content/subpage/participation.md @@ -1,7 +1,7 @@ --- title: Contribute to DataPLANT tagline: Join the DataPLANT community! -subtitle: DataPLANT is a community-driven initiative and open to any kind of contribution. +description: DataPLANT is a community-driven initiative and open to any kind of contribution. content: - participation/become-a-member - participation/arc-how-to-start diff --git a/src/content/subpage/rdm-as-a-service.md b/src/content/subpage/rdm-as-a-service.md index 903670a0..154c3051 100644 --- a/src/content/subpage/rdm-as-a-service.md +++ b/src/content/subpage/rdm-as-a-service.md @@ -1,7 +1,7 @@ --- title: Research Data Management as a Service tagline: RDMaaS! -subtitle: DataPLANT develops research data management concepts and implements them as services for the plant research community. +description: DataPLANT develops research data management concepts and implements them as services for the plant research community. image: /src/assets/images/subpage/service/service-mainpage.svg content: - rdm-as-a-service/arc diff --git a/src/content/subpage/resources.md b/src/content/subpage/resources.md index 127e2d59..708ab91b 100644 --- a/src/content/subpage/resources.md +++ b/src/content/subpage/resources.md @@ -1,7 +1,7 @@ --- title: Resources tagline: DataPLANT developed! -subtitle: A collection of useful tools, services and other resources from DataPLANT. +description: A collection of useful tools, services and other resources from DataPLANT. image: /src/assets/images/subpage/resources/resources-hero.svg styling: titleColor: darkblue diff --git a/src/content/subpage/support.md b/src/content/subpage/support.md index e8c6ddb2..305ba8da 100644 --- a/src/content/subpage/support.md +++ b/src/content/subpage/support.md @@ -1,6 +1,6 @@ --- title: We are here to help -subtitle: Contact us via our helpdesk, learn more about research data management, browse our manuals and teaching materials or join our trainings. +description: Contact us via our helpdesk, learn more about research data management, browse our manuals and teaching materials or join our trainings. image: /src/assets/images/subpage/support/support-hero.svg content: - support/helpdesk diff --git a/src/content/subpage/toolbox.md b/src/content/subpage/toolbox.md index 9bc18c8b..861df171 100644 --- a/src/content/subpage/toolbox.md +++ b/src/content/subpage/toolbox.md @@ -1,7 +1,7 @@ --- title: The DataPLANT Toolbox tagline: Tools for your RDM journey. -subtitle: Learn more about the tools provided by DataPLANT to support your RDM journey. +description: Learn more about the tools provided by DataPLANT to support your RDM journey. styling: titleColor: darkblue bgColor: olive-400 diff --git a/src/layouts/EventLayout.astro b/src/layouts/EventLayout.astro index 3a885ae2..367098ac 100644 --- a/src/layouts/EventLayout.astro +++ b/src/layouts/EventLayout.astro @@ -5,6 +5,7 @@ import SocialShare from '~/components/widgets/SocialShare.astro'; import EventInfoList from '~/components/events/EventInfoList'; import { Icon } from 'astro-icon/components'; import { Image } from 'astro:assets'; +import { createEventSchema } from '~/util/JsonLDSchemas'; interface Props { event: ReducedEvent @@ -14,8 +15,11 @@ const { event } = Astro.props; const { Content, headings } = await event.render(); +const jsonLD = createEventSchema(event) + const frontmatter= { - ...event.data + ...event.data, + jsonLD: jsonLD } const lowestDepth = Math.min(...headings.map(h => h.depth)); @@ -65,7 +69,7 @@ const additionalMetadata: ({

{event.data.title}

-
+

diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 1a4bab29..bcb6bdeb 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -2,23 +2,25 @@ import Navbar from '~/components/Navbar.astro'; import Footer from '~/components/Footer.astro'; import '~/styles/fonts.css'; +import DataPLANTSEO from '~/components/DataPLANTSEO.astro'; interface Props { title: string; + description?: string; + image?: ImageMetadata; + jsonLD?: string } -const { title } = Astro.props; --- - - {title} +
diff --git a/src/layouts/MarkdownLayout.astro b/src/layouts/MarkdownLayout.astro index 3cec4329..e7cc11cc 100644 --- a/src/layouts/MarkdownLayout.astro +++ b/src/layouts/MarkdownLayout.astro @@ -98,9 +98,9 @@ document.addEventListener("DOMContentLoaded", function () { window.addEventListener('scroll', handleScroll); }); - - + +