View source: R/extractBuscos.R
extractBuscos | R Documentation |
Utility for extracting BUSCO sequences into individual fasta files from multiple directories.
extractBuscos(
tsvLocations,
fastaLocations,
ed,
SampleIDs,
complete = TRUE,
fragmented = TRUE,
threshold = 300,
duplicated = TRUE
)
tsvLocations |
the paths that contain the tsv files from a busco analysis. |
fastaLocations |
the paths to the original fasta sequence files |
ed |
extracted directory where extracted sequences will be written |
complete |
whether or not to include complete sequences |
fragmented |
whether or not to include fragmented sequences |
threshold |
minimum number of base pairs required for a fragmented sequence to be extracted.Not used when fragmented = false |
duplicated |
whether or not to include duplicated sequences |
sampleIDs |
name of sequences |
This function uses the output of a busco analysis and specified fasta file to extract busco sequences and write these into fasta files. Fasta files are written into the directory specified by the parameter ed. Each sequence will be named based on the seqID specified
Alex Dornburg, dornburgalex@gmail.com
Phillip Souza, psouza1@uncc.edu
extractBuscos(tsvLocations=c("path/to/first/tsvfile","path/to/second/tsvfile",...), fasta=c("path/to/first/fastafile","path/to/second/fastafile",...),ed="path/to/extracted/", sampleIDs=c("Genus_species","Othergenus_otherspecies",...),complete=TRUE, fragmented=TRUE, threshold=300, duplicated=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.