comparison eal_templates.R @ 0:b34c5a70b706 draft

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit f00c48e2a16ba6154e6c1aa50330586eefb13a32
author ecology
date Sat, 23 Dec 2023 20:40:04 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b34c5a70b706
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