-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvalidation.vue
51 lines (43 loc) · 1.71 KB
/
validation.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<script setup>
import d_input from '../components/d_input.vue';
import d_btn from '../components/d_btn.vue';
import d_checkbox from '../components/d_checkbox.vue';
</script>
<template>
<div class="q-py-sm">
<h5 style="margin-bottom:0.5em;">
<q-icon color="grey-8" name="verified" />
Validation
</h5>
<q-card>
<q-card-section>
<q-item><div>
Here you can choose, how your ARC shall be validated.
The actual validation occurs in the DataHUB once you synchronize your ARC for the next time.
Please check out the <a
href="https://nfdi4plants.github.io/nfdi4plants.knowledgebase/arc-validation/cqc-pipelines/"
target="_blank">DataPLANT knowledge base</a> for more information.
</div></q-item>
</q-card-section>
</q-card>
<q-separator inset />
<q-card>
<q-card-section>
<q-item><div>
By default every ARC is validated against the <a
href="https://github.com/nfdi4plants/ARC-specification"
target="_blank">"ARC specification"</a> to guarantee ARC intactness.
</div>
</q-item>
<q-item><div>
Under "Custom Validation Packages" you can add or remove additional validation packages.
For instance, if you want to publish your ARC and receive a DOI via the DataHUB, select and add the "invenio" validation.
Please check out the <a
href="https://nfdi4plants.github.io/nfdi4plants.knowledgebase/datahub/data-publications/"
target="_blank">DataPLANT knowledge base</a> for more information about publishing your ARC.
</div>
</q-item>
</q-card-section>
</q-card>
</div>
</template>