comparison eal_templates.R @ 0:33e8a66c99dd draft

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 2d36dc964f548b5acbc43ffd78e51e6fc7dc80bb
author ecology
date Tue, 10 Sep 2024 12:48:44 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:33e8a66c99dd
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