diff --git a/README.md b/README.md index 78fbe4a72505eb98f5c98a2ecb1642b5de51f90c..d5ae78185dccce142164b80ca0f18fdd5c0be75d 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ The R bits are split up into tools for and some more. ``` -devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/master/R/core_commons.R") -devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/master/R/ggplot_commons.R") -devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/master/R/bio/bioinfo_commons.R") +devtools::source_url("https://git.mpi-cbg.de/bioinfo/datautils/raw/master/R/core_commons.R") +devtools::source_url("https://git.mpi-cbg.de/bioinfo/datautils/raw/master/R/ggplot_commons.R") +devtools::source_url("https://git.mpi-cbg.de/bioinfo/datautils/raw/master/R/bio/bioinfo_commons.R") ``` @@ -29,11 +29,11 @@ Installation To allow for reproducible research, we prefer [version tags](https://github.com/holgerbrandl/datautils/releases) over cran deployment. You can use these tags to write our workflows. Eg. you could use the stable `v1.45` tag ``` -devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/v1.45/R/core_commons.R") +devtools::source_url("https://git.mpi-cbg.de/bioinfo/datautils/raw/v1.51/R/core_commons.R") ``` Instead to use the latest master-branch version (which is subject of constant change) use ``` -devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/master/R/datatable_commons.R") +devtools::source_url("https://git.mpi-cbg.de/bioinfo/datautils/raw/master/R/core_commons.R ```