From 7a4a4e3a540768fa6899c4b491e4792ad678381c Mon Sep 17 00:00:00 2001 From: js2264 Date: Wed, 17 Jan 2024 22:39:25 +0100 Subject: [PATCH] fix: troubleshooting error in fourDNData pairs parsing in SPB --- inst/pages/disseminating.qmd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/inst/pages/disseminating.qmd b/inst/pages/disseminating.qmd index e3275dd..2dd82ae 100644 --- a/inst/pages/disseminating.qmd +++ b/inst/pages/disseminating.qmd @@ -87,8 +87,9 @@ type of file to fetch can be specified with the `type` argument: into a contact matrix. Once fetched from the 4DN data portal, the local file can be imported in `R` using the `import` function, which will generate a `GInteractions` object. ```{r} -fourDNData(experimentSetAccession = '4DNESJNPEKZD', type = 'pairs') |> - import() +pairs_f <- fourDNData(experimentSetAccession = '4DNESJNPEKZD', type = 'pairs') +print(pairs_f) +import(pairs_f) ``` ::: {.callout-warning}