Mercurial > repos > ecology > makeeml
comparison eal_table_templates.R @ 3:642e31c435c9 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:49:43 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:8a697f446051 | 3:642e31c435c9 |
---|---|
1 #28/11/2023 #SEGUINEAU Pauline | |
2 | |
3 #Load packages | |
4 | |
5 library(EMLassemblyline) | |
6 | |
7 #Load arguments | |
8 | |
9 if (length(commandArgs(trailingOnly = TRUE)) > 0) { | |
10 data_table <- commandArgs(trailingOnly = TRUE)[1] | |
11 } | |
12 | |
13 #Transform arguments | |
14 | |
15 table = strsplit(data_table," ") | |
16 | |
17 #Make templates to describe data tables : Describes columns of a data table (classes, units, datetime formats, missing value codes) + catégorical variables. | |
18 | |
19 template_table_attributes(path = ".",data.path= "data_files", data.table = table[[1]]) | |
20 template_categorical_variables(path = ".", data.path = "data_files") | |
21 |