run_flye | R Documentation |
Run the long read assembler Flye
run_flye(
input = NULL,
sample_names = NULL,
platform = NULL,
out_dir = NULL,
threads = 10,
parallel = FALSE,
cores = 4,
execute = FALSE,
flye = NULL,
version = FALSE
)
input |
List of the paths to files containing to the long reads, required |
sample_names |
List of sample names, required |
platform |
Names of the sequencing platform, choose either, pacbio_raw, PacBio regular CLR reads less than 20 percent error pacbio_corr, PacBio reads that were corrected with other methods less than 3 percent error pacbio_hifi, PacBio HiFi reads nano_raw, ONT regular reads, pre-Guppy5 less than 20 percent error nano_corr, ONT reads that were corrected with other methods less than 3 percent error nano_hq , ONT high-quality reads: Guppy5+ or Q20 less than 5 percent error |
out_dir |
Name of the directory from the assembled reads |
threads |
Number of threads for flye to use, default set to 10 |
parallel |
Run in parallel, default set to FALSE |
cores |
Number of cores/threads to use for parallel processing, default set to 4 |
execute |
Whether to execute the commands or not, default set to TRUE |
flye |
Path to the flye program, required |
version |
Returns the version number |
A list with the Flye commands
## Not run:
path <- "/path/to/flye"
input_files <- c("sample1.fastq", "sample2.fastq")
sample_names <- gsub(".fastq","",input_files)
platform <- "nano_hq"
out_directory <- "Assemblies"
run_flye(flye = path,
version = TRUE)
run_flye(input = input_files,
sample_names = sample_names,
platform = platform,
out_dir = out_directory,
threads = 10,
parallel = FALSE,
cores = 4,
execute = FALSE,
flye = path)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.