This package is to fetch taxonomy meta data from AlgaeBase.

How to Install

  • First, you have to regist as a user of https://git.drwater.net/, say your username is YOUR_USERNAME, and your password is YOUR_PASSWORD.
  • Second, request as a member of drwateR via email .
  • Finally, you can run the following code in R envihronment.

Method 1

Install from server,

mycred <- git2r::cred_user_pass(username = "YOUR_USERNAME", password = "YOUR_PASSWORD")
remotes::install_git("https://git.drwater.net/drwateR/phytoab.git", credentials = mycred)

Method 2

If the Method 1 not works, try this:

First, download the package from server

mycred <- git2r::cred_user_pass(username = "YOUR_USERNAME", password = "YOUR_PASSWORD")
git2r::clone("https://git.drwater.net/drwateR/phytoab.git", "phytoab", credentials = mycred)

Then, install it using remotes package

remotes::install_git("phytoab")

After install it, you can remove the package folder manually, or run the following R command.

unlink("phytoab", recursive = T)