Skip to content

Releases: lifecycle-project/ds-upload

dsUpload 5.1.3

13 Jun 08:34
c0aced7
Compare
Choose a tag to compare

Fixes

  • Added download.method to ds.upload()

What's Changed

New Contributors

Full Changelog: 5.0.3...5.1.3

dsUpload 5.0.3

06 Jun 07:23
7310455
Compare
Choose a tag to compare

Fixes

  • Refactor/remove beta dictionary functions and add tests

What's Changed

Full Changelog: 5.0.2...5.0.3

dsUpload 4.7.2

07 Aug 11:46
Compare
Choose a tag to compare

Fixes

du.upload() includes the cohort_id(s) of dfbc, elspac, genrnext and pcl (Piccolipiù)

Support boolean as valueType in dictionaries

dsUpload 5.0.2

24 Jul 13:28
5a316b3
Compare
Choose a tag to compare

Fixes

du.upload() includes the cohort_id(s) of dfbc, elspac, genrnext and pcl (Piccolipiù)

What's Changed

Full Changelog: 5.0.1...5.0.2

dsUpload 5.0.1

11 Jul 09:38
834a98b
Compare
Choose a tag to compare

Fixes

The (Athlete) demo set has been updated to be compatible with Armadillo 3 and can be found in the folder /ds-upload/inst/examples/data/demo/

What's Changed

Full Changelog: 5.0.0...5.0.1

dsUpload 5.0.0

09 Mar 09:29
cc4d49c
Compare
Choose a tag to compare

Breaking

DsUpload version 5.x is updated to be compatible with Armadillo 3
This means that older versions of dsUpload are incompatible with Armadillo 3 and older versions of Armadillo are incompatible with dsUpload 5.x. Versions to use:

Armadillo version dsUpload version
2.x 4.7.1
3.x 5.x

For opal, we recommend using the newest version of dsUpload to make sure you are up to date with all new features and bugfixes.

dsUpload 4.7.1

07 Mar 12:32
Compare
Choose a tag to compare

Features

Updated README to explain Armadillo 2 users how to update/install dsUpload.

dsUpload Version 4.7.x is compatible with Armadillo 2. When installing this version of dsUpload, the install.packages command might install the newest version (incompatible) of MolgenisArmadillo.

Run these commands (Rstudio) to install the correct version of MolgenisArmadillo:

Install devtools:

install.packages("devtools")

Load devtools and install ds-upload 4.7.1

library(devtools)

devtools::install_github("lifecycle-project/[email protected]")

You will get the following error message

namespace ‘MolgenisArmadillo’ 2.0.0 is being loaded, but == 1.1.3 is required

Next you need to remove MolgenisArmadillo

unloadNamespace("MolgenisArmadillo")

remove.packages("MolgenisArmadillo")

You might have to install these additional packages

install.packages(c("aws.iam", "aws.s3"))

Next we install a previous version of MolgenisArmadillo 1.1.3

packageurl <- "https://cran.r-project.org/src/contrib/Archive/MolgenisArmadillo/MolgenisArmadillo_1.1.3.tar.gz"

install.packages(packageurl, repos=NULL, type="source")

Now we (again) install dsUpload 4.7.1

devtools::install_github("lifecycle-project/[email protected]")

Make sure you do NOT update MolgenisArmadillo to another version then 1.1.3, select option 3

Downloading GitHub repo lifecycle-project/[email protected]
These packages have more recent versions available.
It is recommended to update all of them.
Which would you like to update?

1: All                                 
2: CRAN packages only                  
3: None                                
4: MolgenisA... (1.1.3 -> 2.0.0) [CRAN]

Enter one or more numbers, or an empty line to skip updates: 3

After that you should be able to load dsUpload without any problems.

library(dsUpload)

If you are asked to update MolgenisArmadillo to version 2.0.x please skip,
this in order for dsUpload 4.7.x to work with Armadillo 2.

What's Changed

  • chore: freeze versions for armadillo 2 and update docs by @marikaris in #120

Full Changelog: 4.7.0...4.7.1

dsUpload 4.7.0

20 Feb 13:03
Compare
Choose a tag to compare

Features

Removed hard coded dictionary types and versions

It is no longer necessary to hard code newly added dsDictionaries in dsUpload.
Users don’t need to define dict_version in du.upload, if the option is left empty du.upload will use the latest version.

dsUpload 4.6.2

24 Nov 08:53
Compare
Choose a tag to compare

Features

  • Added support for outcome_ath dictionaries, use dict_kind = 'outcome_ath' in du.upload.

dsUpload 4.6.1

25 Oct 12:29
0601421
Compare
Choose a tag to compare

Bugfixes

  • if yearly, trimester or monthly data was missing dsUpload failed to process the data that was available.