powered by
Separates two or more gene copies from short-read Next-Generation Sequencing data into a small number of overlapping DNA sequences and assemble them into their respective gene copies.
sep_assem( copy_number, read_length, overlap = 225, rare_read = 10, core_number = 1, verbose = 1 )
A fasta alignment of the anticipated number of full-length gene copies.
An integer (e.g. 2,3, or 4) giving the anticipated number of gene copies in the input file.
An integer (e.g. 250, or 300) giving the read length of your Next-generation Sequencing data. This method is designed for read length >=250bp.
An integer describing number of base pairs of overlap between adjacent subsets. More overlap means more subsets. Default 225.
A positive integer. During clustering analyses, clusters with less than this number of reads will be ignored. Default 10.
An integer describing number of cores to use.
Turn on (verbose=1; default) or turn off (verbose=0) the output.
if (FALSE) { sep_assem(2,300,225,10,1,1) # all input fasta files in the working directory will be processed }
Run the code above in your browser using DataLab