File: batch

package info (click to toggle)
mothur 1.48.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 13,684 kB
  • sloc: cpp: 161,854; makefile: 122; sh: 31
file content (13 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pairwise.seqs
# NOTE: download TestReferences and TestFiles and put in same location as mothur executable
# pairwise.fasta is stability.trim.contigs.good.unique.good.filter.unique.precluster.pick.pick.pick.fasta from MiSeq_SOP
#
# test different classification methods and seaches
set.dir(input=./TestFiles, output=./TestResults/pairwise.seqs, tempdefault=./TestReferences)
set.logfile(name=pairwiseseqs.logfile)
pairwise.seqs(fasta=pairwise.fasta, kmercutoff=-0.5, cutoff=0.05)
pairwise.seqs(fasta=pairwise.fasta, calc=onegap, cutoff=0.03)
pairwise.seqs(fasta=pairwise.fasta, calc=nogaps, cutoff=0.10)
pairwise.seqs(fasta=pairwise.fasta, calc=eachgap, cutoff=0.15)
quit()