trimFasta.Rd
This function executes a ubuntu docker that remove reads shorter of a specific threshold
trimFasta(
group = c("sudo", "docker"),
scratch.folder,
data.folder,
min.length = 300
)
a character string. Two options: sudo or docker, depending to which group the user belongs
a character string indicating the path of the scratch folder
a character string indicating the folder where input data are located and where output will be written
min nucleotide lenght of each fasta seq
Returns a fasta file colled trimmed.fasta.gz
if (FALSE) {
#running fastq2fasta
trimfasta(group="docker", scratch.folder="/data/scratch", data.folder=getwd(), min.length=300)
}