Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
3mmaRand committed Oct 22, 2023
1 parent 32e04e6 commit ea01e25
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
Binary file added omics/week-5/Rplot001.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified omics/week-5/figures/frog-s30-volcano.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 1 addition & 12 deletions omics/week-5/workshop.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -521,23 +521,12 @@ Notice the dataframe returned only has 279 rows, not 280. Which one is missing?

```{r}
#| error: true
prog_hspc_results |> (ensembl_gene_id) |>
prog_hspc_results |> select(ensembl_gene_id) |>
filter(!ensembl_gene_id %in% gene_info$ensembl_gene_id)
```


```
Error:
! [conflicted] select found in 2 packages.
Either pick the one you want with `::`:
• biomaRt::select
• dplyr::select
Or declare a preference with `conflicts_prefer()`:
• conflicts_prefer(biomaRt::select)
• conflicts_prefer(dplyr::select)
Run `rlang::last_trace()` to see where the error occurred.
```

```{r}
prog_hspc_results |> dplyr::select(ensembl_gene_id) |>
Expand Down

0 comments on commit ea01e25

Please sign in to comment.