comparison templates1.R @ 2:8a697f446051 draft

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit ea09df299078ff13beda210b36b7edaa6a79c099
author ecology
date Sat, 02 Dec 2023 01:50:00 +0000
parents
children
comparison
equal deleted inserted replaced
1:9d56f6480194 2:8a697f446051
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