Mercurial > repos > ecology > raster_template
comparison geo_cov_temp.R @ 1:06e29cdc08bf draft
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline commit 43f3c45c97ba7d09ad1ea19df9e953cfe917dde8
author | ecology |
---|---|
date | Mon, 22 Jan 2024 14:55:29 +0000 |
parents | b34c5a70b706 |
children |
comparison
equal
deleted
inserted
replaced
0:b34c5a70b706 | 1:06e29cdc08bf |
---|---|
17 long_col <- as.numeric(args[4]) | 17 long_col <- as.numeric(args[4]) |
18 site_col <- as.numeric(args[5]) | 18 site_col <- as.numeric(args[5]) |
19 empty <- args[6] | 19 empty <- args[6] |
20 } | 20 } |
21 | 21 |
22 datatable = read.table(data_table,header=T) | 22 datatable = read.table(data_table,sep="\t",header=T) |
23 | 23 |
24 latcol = names(datatable[lat_col]) | 24 latcol = names(datatable[lat_col]) |
25 longcol = names(datatable[long_col]) | 25 longcol = names(datatable[long_col]) |
26 sitecol = names(datatable[site_col]) | 26 sitecol = names(datatable[site_col]) |
27 | 27 |