File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ Vous pouvez utiliser la fonction `readepi::login()` pour établir une connection
158158
159159``` {r warning=FALSE, message=FALSE, eval=FALSE}
160160# etablir la connection avec la base de donnees
161- rdbms_login <- login(
161+ rdbms_login <- readepi:: login(
162162 from = "mysql-rfam-public.ebi.ac.uk",
163163 type = "MySQL",
164164 user_name = "rfamro",
@@ -252,11 +252,11 @@ Vous pouvez également consulter le package `{dbplyr}` en R. Pour un tutoriel pa
252252
253253``` {r}
254254# SELECT FEW COLUMNS FROM ONE TABLE AND LEFT JOIN WITH ANOTHER TABLE
255- author <- login %>%
255+ author <- rdbms_login %>%
256256 dplyr::tbl(from = "author") %>%
257257 dplyr::select(author_id, name)
258258
259- family_author <- login %>%
259+ family_author <- rdbms_login %>%
260260 dplyr::tbl(from = "family_author") %>%
261261 dplyr::select(author_id, rfam_acc)
262262
You can’t perform that action at this time.
0 commit comments