comparison eal_templates.R @ 1:0cfc9b6da2ac draft

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 5c327a780dc58fb954e7b65db6fd413ee3909c84
author ecology
date Mon, 04 Dec 2023 21:48:41 +0000
parents
children
comparison
equal deleted inserted replaced
0:4cd3d9fdb5f3 1:0cfc9b6da2ac
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