Skip to content

Commit 7db193d

Browse files
committed
dont run mummer alignment
1 parent 78cf125 commit 7db193d

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

R/mummer_alignment.R

+11-5
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,22 @@
2828
#' during processing.
2929
#'
3030
#' @examples
31-
#' \donttest{
31+
#' \dontrun{
3232
#' # Basic alignment with default options
3333
#' mummer_alignment(
3434
#' path = "/path/to/sequences",
3535
#' maptype = "many-to-many",
3636
#' seqtype = "protein"
3737
#' )
38+
#'
3839
#' # Alignment with specific MUMmer options
3940
#' mummer_alignment(
40-
#' path = "/path/to/sequences", maptype = "one-to-one", seqtype = "protein",
41+
#' path = "/path/to/sequences",
42+
#' maptype = "one-to-one",
43+
#' seqtype = "protein",
4144
#' mummer_options = "--maxgap=500 --mincluster=100",
4245
#' filter_options = "-i 90"
43-
#' )
44-
#'
46+
#' )
4547
#' }
4648
#' @references Kurtz S, Phillippy A, Delcher AL, Smoot M, Shumway M, Antonescu
4749
#' C, Salzberg SL (2004). Versatile and open software for comparing large
@@ -363,7 +365,11 @@ parse_procmer <- function(path, reference, query){
363365
#'
364366
#' @examples
365367
#' \donttest{
366-
#' genbank_to_fasta("path/to/input.gb")
368+
#' # Path to the example GenBank file in the package
369+
#' gbk_file <- system.file("extdata", "BGC0000001.gbk", package = "geneviewer")
370+
#'
371+
#' # Convert the GenBank file to FASTA format
372+
#' genbank_to_fasta(gbk_file)
367373
#' }
368374
#'
369375
#'

0 commit comments

Comments
 (0)