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 (19 lines) | stat: -rw-r--r-- 1,040 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#make.contigs
# NOTE: download TestReferences and TestFiles and put in same location as mothur executable
# stability.files & *.fastq *.fastq.gz from MISeq_SOP
set.dir(input=./TestFiles, output=./TestResults/make.contigs, tempdefault=./TestReferences)
set.logfile(name=makecontigs.logfile)
make.contigs(file=stability.files, maxambig=0, maxlength=275)
summary.seqs(count=current)
make.contigs(file=stability.gz.files)
summary.seqs(fasta=current)
make.contigs(ffastq=F3D150_S216_L001_R1_001.fastq.gz, rfastq=F3D150_S216_L001_R2_001.fastq.gz)
summary.seqs(fasta=current)
make.contigs(ffastq=F3D150_S216_L001_R1_001.fastq, rfastq=F3D150_S216_L001_R2_001.fastq)
summary.seqs(fasta=current)
make.contigs(ffasta=F3D150_S216_L001_R1_001.fasta, rfasta=F3D150_S216_L001_R2_001.fasta, rqfile=F3D150_S216_L001_R1_001.qual, fqfile=F3D150_S216_L001_R2_001.qual)
summary.seqs(fasta=current)
#make.contigs(ffastq=small.forward.fastq, rfastq=small.reverse.fastq, oligos=qatar.oligos, pdiffs=2, bdiffs=1, checkorient=t)
#summary.seqs(fasta=current)
quit()