Skip to content

Commit 97f6723

Browse files
committed
Simplification: no learnr tutorials or Shiny app, only init()
1 parent 5d32c37 commit 97f6723

File tree

218 files changed

+56
-25427
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+56
-25427
lines changed

.Rbuildignore

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,4 @@ Makefile
1212
^appveyor\.yml$
1313
^\.Rproj\.user$
1414
^.*\.Rproj$
15-
LICENSE
16-
data-raw
17-
data-raw/*
18-
Untitled
19-
Untitled/*
15+
LICENSE.md

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
# RSconnect
2727
/inst/shiny/**/rsconnect/*
28-
/inst/shiny/**/**/rsconnect/*
28+
/inst/shiny/**/**/rsconnect/*

DESCRIPTION

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: BioDataScience
22
Type: Package
3-
Version: 2020.0.9002
3+
Version: 2020.0.0
44
Title: A Series of Learnr Documents for Biological Data Science
55
Description: Interactive documents using learnr for studying biological data science.
66
Authors@R: c(
@@ -10,9 +10,8 @@ Authors@R: c(
1010
email = "guyliann.engels@umons.ac.be"))
1111
Maintainer: Philippe Grosjean <phgrosjean@sciviews.org>
1212
Depends: R (>= 3.3.0)
13-
Imports: learnr, httr, jsonlite, remotes, svMisc, mongolite (>= 1.5)
14-
Suggests: SciViews, ggplot2, ggpubr, data.io, flow, chart, covr, knitr, testthat
15-
License: CC BY-SA 4.0
13+
Suggests: covr, knitr, testthat
14+
License: MIT + file LICENSE
1615
Encoding: UTF-8
1716
LazyData: true
1817
URL: https://github.com/BioDataScience-Course/BioDataScience

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
YEAR: 2020
2+
COPYRIGHT HOLDER: Philippe Grosjean

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# MIT License
2+
3+
Copyright (c) 2020 Philippe Grosjean
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

NAMESPACE

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,3 @@
11
# Generated by roxygen2: do not edit by hand
22

3-
export(checker_sdd)
43
export(init)
5-
export(record_sdd)
6-
export(run)
7-
export(send_mail_sdd)
8-
export(user_email)
9-
export(user_name)
10-
importFrom(httr,GET)
11-
importFrom(httr,authenticate)
12-
importFrom(httr,content)
13-
importFrom(httr,parse_url)
14-
importFrom(httr,status_code)
15-
importFrom(jsonlite,base64_dec)
16-
importFrom(jsonlite,base64_enc)
17-
importFrom(jsonlite,fromJSON)
18-
importFrom(learnr,run_tutorial)
19-
importFrom(mongolite,mongo)
20-
importFrom(remotes,install_github)
21-
importFrom(svMisc,list_to_json)
22-
importFrom(utils,compareVersion)
23-
importFrom(utils,create.post)
24-
importFrom(utils,packageVersion)
25-
importFrom(utils,select.list)

NEWS.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
# BioDataScience 2020.0.0
2+
3+
- Clean up finished. Most code moved to learndown. Learnr tutorials and Shiny
4+
applications moved to BioDataScience1.
5+
16
# BioDataScience 2020.0.9002
27

38
- Add `MONGO_URL_SERVER` environmlent variable in `init()`.
49

510
# BioDataScience 2020.0.9001
611

7-
- Separate `MONGO_USER` and `MONGO_PASSWORD` variables in `init()` and do not set them if already there.
12+
- Separate `MONGO_USER` and `MONGO_PASSWORD` variables in `init()` and do not
13+
set them if already there.
814

915
# BioDataScience 2020.0.9000
1016

R/BioDataScience-package.R

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
#' A Series of Learnr Documents for BioDataScience
1+
#' Base configuration for BioDataScience
22
#'
3-
#' Material for the course.
4-
#'
5-
#' @section Important functions:
6-
#'
7-
#' - [run()] is the main function to launch learnr interactive documents
3+
#' Configure the R environment for the BioDartaScience course using [init()].
84
#'
95
#' @docType package
106
#' @name BioDataScience-package
117
#'
12-
#' @importFrom learnr run_tutorial
13-
#' @importFrom httr content status_code parse_url authenticate GET
14-
#' @importFrom jsonlite fromJSON base64_dec base64_enc
15-
#' @importFrom utils compareVersion packageVersion select.list create.post
16-
#' @importFrom remotes install_github
17-
#' @importFrom svMisc list_to_json
18-
#' @importFrom mongolite mongo
198
NULL

R/checker_sdd.R

Lines changed: 0 additions & 43 deletions
This file was deleted.

R/data.R

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)