Mercurial > repos > ecology > makeeml
comparison make_eml.R @ 0:9cbac7a9b1a3 draft
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 2d139641e5afb8c75b8aded37bdbd7aecae0fb83
author | ecology |
---|---|
date | Wed, 13 Sep 2023 19:56:16 +0000 |
parents | |
children | 9d56f6480194 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9cbac7a9b1a3 |
---|---|
1 ##07/06/2023 | |
2 ##Genthon Tanguy | |
3 ###make_eml | |
4 | |
5 args = commandArgs(trailingOnly=TRUE) | |
6 if(length(args)>0){ | |
7 title <- args[1] | |
8 } | |
9 | |
10 EMLassemblyline::make_eml("output_template",eml.path=".", dataset.title = title) | |
11 old.names <- list.files(path=".", pattern=".xml") | |
12 print(old.names) | |
13 file.rename(from=old.names, to="eml.xml") |