Skip to content

Commit

Permalink
*madrat* change writing of the mappings for the csv format: now it wr…
Browse files Browse the repository at this point in the history
…ites with semicolon separated data
  • Loading branch information
mishkos committed Dec 4, 2017
1 parent 68b1b6c commit aec2d4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,8 +1,8 @@
Package: madrat
Type: Package
Title: May All Data be Reproducible and Transparent (MADRaT) *
Version: 1.33.0
Date: 2017-11-21
Version: 1.33.1
Date: 2017-12-04
Authors@R: c(person("Jan Philipp", "Dietrich", email = "dietrich@pik-potsdam.de", role = c("aut","cre")),
person("Lavinia", "Baumstark", email = "lavinia@pik-potsdam.de", role = "aut"),
person("Anastasis", "Giannousakis", email = "giannou@pik-potsdam.de", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion R/toolConvertMapping.R
Expand Up @@ -29,7 +29,7 @@ toolConvertMapping <- function(name, format="rda", type=NULL, where="mappingfold
if(format=="rda") {
save(data,file=fname,compress="xz")
} else if(format=="csv") {
write.csv(data,fname,sep=",")
write.table(data,fname,sep=";",row.names=FALSE)
} else {
stop("Unsupported format ",format)
}
Expand Down

0 comments on commit aec2d4f

Please sign in to comment.