You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Bioconductor Packages: Guidelines for Developers and Reviewers
13
13
14
14
This book contains our guidelines for packages contributed to the [_Bioconductor_](https://bioconductor.org/) suite of packages.
15
15
These guidelines are always a work in progress - corrections, suggestions and general improvements are welcome as [issue submissions in this repository](https://github.com/Bioconductor/pkgrevdocs/issues/new).
16
-
Open discussions are welcome in our [Slack](https://bioc-community.herokuapp.com/).
16
+
Open discussions are welcome in our [Zulip](https://community-bioc.zulipchat.com/).
17
17
You can also suggest changes by editing the `.Rmd` files that are at the root of this repository and submitting a [pull request](https://github.com/Bioconductor/pkgrevdocs/pulls).
18
18
An "Edit this page" link in the side bar on the right of each book chapter will take you directly to the relevant page on the GitHub repository to make such changes.
19
19
Please target your pull requests to the `devel` branch.
Copy file name to clipboardExpand all lines: general-package-development.Rmd
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -42,8 +42,12 @@ Do not use filenames that differ only in case, as not all file systems are case-
42
42
43
43
### Package size {#package-size}
44
44
45
-
The source package resulting from running `R CMD build` should occupy less than 5 MB on disk.
46
-
If your package includes (e.g. in the vignettes) some screenshots, this limit can be reached quite quickly. Their size can be reduced (often as much as 70%) in a lossy but quality-preserving manner by using tools such as [pngquant](https://pngquant.org/) (available as a command line utility and as a GUI on most systems).
45
+
The source package resulting from running `R CMD build` should occupy less than
46
+
5 MB on disk. If your package includes some screenshots (e.g., in the
47
+
vignettes), this limit can be reached quite quickly. Their size can be reduced
48
+
(often as much as 70%) with lossy compression using tools such as
49
+
[pngquant](https://pngquant.org/) (available as a command line utility and as a
0 commit comments