Mercurial > repos > ecology > eml_validate
comparison vector_templates.R @ 0:ad96b20423cf draft default tip
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 4b040fe7867d965fb88ce70cc08081367b62b063
author | ecology |
---|---|
date | Fri, 27 Sep 2024 13:01:04 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ad96b20423cf |
---|---|
1 #15/12/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_vector <- commandArgs(trailingOnly = TRUE)[1] | |
11 } | |
12 | |
13 #Transform arguments | |
14 | |
15 vector = strsplit(data_vector," ") | |
16 | |
17 #Make templates to describe data raster | |
18 | |
19 template_vector_attributes(path = ".",data.path= "data_files", vector.file = vector[[1]]) | |
20 template_categorical_variables(path = ".", data.path = "data_files") | |
21 | |
22 |