Skip to content

Commit 5497a10

Browse files
committed
update url
1 parent 4562c3a commit 5497a10

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ You have diverse raw data sets that you need to preprocess and tidy in order to:
8383

8484
- **Package size limits.**
8585

86-
R packages have a 10MB size limit, at least on [CRAN](https://cran.r-project.org/web/packages/policies.html). Bioconductor [ExperimentHub](http://contributions.bioconductor.org/data.html#data) may be able to support larger data packages.
86+
R packages have a 10MB size limit, at least on [CRAN](https://cran.r-project.org/web/packages/policies.html). Bioconductor [ExperimentHub](https://contributions.bioconductor.org/data.html#data) may be able to support larger data packages.
8787

8888
Sharing large volumes of raw data in an R package format is still not ideal, and there are public biological data repositories better suited for raw data: e.g., [GEO](https://www.ncbi.nlm.nih.gov/geo/), [SRA](https://www.ncbi.nlm.nih.gov/sra), [ImmPort](https://www.immport.org/), [ImmuneSpace](https://immunespace.org/), [FlowRepository](http://flowrepository.org/).
8989

README.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ purpose is to contain, access, and / or document data sets.
9191
R packages have a 10MB size limit, at least on
9292
[CRAN](https://cran.r-project.org/web/packages/policies.html).
9393
Bioconductor
94-
[ExperimentHub](http://contributions.bioconductor.org/data.html#data)
94+
[ExperimentHub](https://contributions.bioconductor.org/data.html#data)
9595
may be able to support larger data packages.
9696

9797
Sharing large volumes of raw data in an R package format is still not
@@ -180,28 +180,28 @@ datapackage_skeleton(
180180
code_files = processing_code,
181181
r_object_names = "cars_over_20",
182182
path = tempdir())
183-
#> ✔ Creating '/tmp/RtmpU0javb/mtcars20/'
184-
#> ✔ Setting active project to '/tmp/RtmpU0javb/mtcars20'
185-
#> ✔ Creating 'R/'
186-
#> ✔ Writing 'DESCRIPTION'
183+
#> ✔ Creating '/tmp/RtmpT70eUS/mtcars20/'.
184+
#> ✔ Setting active project to "/tmp/RtmpT70eUS/mtcars20".
185+
#> ✔ Creating 'R/'.
186+
#> ✔ Writing 'DESCRIPTION'.
187187
#> Package: mtcars20
188188
#> Title: What the Package Does (One Line, Title Case)
189189
#> Version: 0.0.0.9000
190190
#> Authors@R (parsed):
191-
#> * First Last <first.last@example.com> [aut, cre] (YOUR-ORCID-ID)
191+
#> * First Last <first.last@example.com> [aut, cre]
192192
#> Description: What the package does (one paragraph).
193193
#> License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
194194
#> license
195195
#> Encoding: UTF-8
196196
#> Roxygen: list(markdown = TRUE)
197-
#> RoxygenNote: 7.3.1
198-
#> ✔ Writing 'NAMESPACE'
199-
#> ✔ Setting active project to '<no active project>'
200-
#> ✔ Setting active project to '/tmp/RtmpU0javb/mtcars20'
197+
#> RoxygenNote: 7.3.3
198+
#> ✔ Writing 'NAMESPACE'.
199+
#> ✔ Setting active project to "<no active project>".
200+
#> ✔ Setting active project to "/tmp/RtmpT70eUS/mtcars20".
201201
#> ✔ Added DataVersion string to 'DESCRIPTION'
202-
#> ✔ Creating 'data-raw/'
203-
#> ✔ Creating 'data/'
204-
#> ✔ Creating 'inst/extdata/'
202+
#> ✔ Creating 'data-raw/'.
203+
#> ✔ Creating 'data/'.
204+
#> ✔ Creating 'inst/extdata/'.
205205
#> ✔ Copied subsetCars.Rmd into 'data-raw'
206206
#> ✔ configured 'datapackager.yml' file
207207

@@ -219,14 +219,14 @@ package_build(packageName = file.path(tempdir(),"mtcars20"))
219219
#> ☘ Built all datasets!
220220
#> Non-interactive NEWS.md file update.
221221
#> * Added: cars_over_20
222-
#> ✔ Creating 'vignettes/'
223-
#> ✔ Creating 'inst/doc/'
222+
#> ✔ Creating 'vignettes/'.
223+
#> ✔ Creating 'inst/doc/'.
224224
#> ℹ Loading mtcars20
225225
#> Writing 'NAMESPACE'
226226
#> Writing 'mtcars20.Rd'
227227
#> Writing 'cars_over_20.Rd'
228228
#> ── R CMD build ─────────────────────────────────────────────────────────────────
229-
#> * checking for file ‘/tmp/RtmpU0javb/mtcars20/DESCRIPTION’ ... OK
229+
#> * checking for file ‘/tmp/RtmpT70eUS/mtcars20/DESCRIPTION’ ... OK
230230
#> * preparing ‘mtcars20’:
231231
#> * checking DESCRIPTION meta-information ... OK
232232
#> * checking for LF line-endings in source and make files and shell scripts
@@ -235,17 +235,17 @@ package_build(packageName = file.path(tempdir(),"mtcars20"))
235235
#> * building ‘mtcars20_1.0.tar.gz’
236236
#>
237237
#> Next Steps
238-
#> 1. Update your package documentation.
239-
#> - Edit the documentation.R file in the package source data-raw subdirectory and update the roxygen markup.
240-
#> - Rebuild the package documentation with document() .
241-
#> 2. Add your package to source control.
242-
#> - Call git init . in the package source root directory.
243-
#> - git add the package files.
244-
#> - git commit your new package.
238+
#> 1. Update your package documentation.
239+
#> - Edit the documentation.R file in the package sourcedata-rawsubdirectory and update the roxygen markup.
240+
#> - Rebuild the package documentation with document().
241+
#> 2. Add your package to source control.
242+
#> - Call git init . in the package source root directory.
243+
#> - git add the package files.
244+
#> - git commit your new package.
245245
#> - Set up a github repository for your pacakge.
246246
#> - Add the github repository as a remote of your local package repository.
247-
#> - git push your local repository to gitub.
248-
#> [1] "/tmp/RtmpU0javb/mtcars20_1.0.tar.gz"
247+
#> - git push your local repository to gitub.
248+
#> [1] "/tmp/RtmpT70eUS/mtcars20_1.0.tar.gz"
249249

250250
# Update the autogenerated roxygen documentation in data-raw/documentation.R.
251251
# edit(file.path(tempdir(),"mtcars20","R","mtcars20.R"))

0 commit comments

Comments
 (0)