Mercurial > repos > ecology > eal_templates
comparison geo_cov_temp.R @ 2:debfa8a223c0 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:56:25 +0000 |
parents | 3b0fa963ae3e |
children |
comparison
equal
deleted
inserted
replaced
1:3b0fa963ae3e | 2:debfa8a223c0 |
---|---|
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 |