Skip to content

Commit 8b3ee72

Browse files
author
SuiYue-2308
committed
update the example code for generating rcf
1 parent 1fccbe1 commit 8b3ee72

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ rcFiles can be generated in two ways, either as a direct output of the bambu() f
332332

333333
Example using rcOutDir to produce preprocessed files
334334
```rscript
335-
se <- bambu(reads = test.bam, rcOutDir = "path/to/rcOutput/", annotations = annotations, genome = fa.file)
335+
se <- bambu(reads = test.bam, rcOutDir = "path/to/rcOutput/", annotations = annotations, genome = fa.file, assignDist = FALSE)
336336
```
337337

338338
This will store a preprocessed rcFile in the provided directory for each sample file provided to reads. To access these files for future use, we recommend using the BioCFileCache package which provides the metadata needed to identify the sample.
@@ -352,7 +352,7 @@ se <- bambu(reads = info$rpath[1], annotations = annotations, genome = fa.file)
352352

353353
This output is also generated when both quant and discovery are set to false in a list form indexed by sample.
354354
```rscript
355-
se <- bambu(reads = test.bam, annotations = annotations, genome = fa.file, discovery = FALSE, quant = FALSE)
355+
se <- bambu(reads = test.bam, annotations = annotations, genome = fa.file, discovery = FALSE, quant = FALSE, assignDist = FALSE)
356356
```
357357

358358
As this is an intermediate object it will not be suitable to use for general use cases. We will document the object below for any potential advanced use cases that may arise.

0 commit comments

Comments
 (0)