Mercurial > repos > ecology > raster_template
comparison raster_templates.R @ 0:b34c5a70b706 draft
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit f00c48e2a16ba6154e6c1aa50330586eefb13a32
author | ecology |
---|---|
date | Sat, 23 Dec 2023 20:40:04 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b34c5a70b706 |
---|---|
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_raster <- commandArgs(trailingOnly = TRUE)[1] | |
11 } | |
12 | |
13 #Transform arguments | |
14 | |
15 raster = strsplit(data_raster," ") | |
16 | |
17 #Make templates to describe data raster | |
18 | |
19 template_raster_attributes(path = ".",data.path= "data_files", raster.file = raster[[1]]) | |
20 template_categorical_variables(path = ".", data.path = "data_files") | |
21 | |
22 |