Mercurial > repos > ecology > eml_validate
comparison eal_templates.R @ 0:ad96b20423cf draft default tip
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 4b040fe7867d965fb88ce70cc08081367b62b063
author | ecology |
---|---|
date | Fri, 27 Sep 2024 13:01:04 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ad96b20423cf |
---|---|
1 #22/11/2023 #SEGUINEAU Pauline | |
2 | |
3 ###First tool of EML Workflow | |
4 | |
5 #Load packages | |
6 | |
7 library(EMLassemblyline) | |
8 | |
9 #Load arguments | |
10 | |
11 args = commandArgs(trailingOnly=TRUE) | |
12 if(length(args)>0){ | |
13 | |
14 license <- args[1] | |
15 file_type <- args[2] | |
16 } | |
17 | |
18 #Make templates to describe core features of a data package (abstract, methods, keywords, personnel, license). | |
19 | |
20 template_core_metadata(path=".",license = license, file.type = file_type) | |
21 | |
22 | |
23 |