Research in GenomicsEric Rivals |
SearchTandemSAGE-CG -pc pattern-file-Ctype -pg pattern-file-Gtype -d dna-sequence-FASTAor with output redirection:
SearchTandemSAGE-CG -pc pattern-file-Ctype -pg pattern-file-Gtype -d dna-sequence-FASTA > output-fileThe program searches for pair of adjacent patterns along the sequence such that each reported pair contains C-type pattern (leftmost pattern in the pair or in biological terms at its 5' end) then one G-type pattern (rightmost pattern in the pair or in biological terms at its 3' end). To be reported as a match the substring must match exactly the corresponding patterns. There is no notion of approximate matching in this framework.
>test1 210498;C;catgtgtacataca;54;115;G;gatccgcccgcctc;74; 210498;C;catgtgtacataca;54;23222;G;gatccaaatattgt;94; 230447;C;catgtggtattaga;108;185;G;gatccacctgcctc;120;The first line gives the sequence ID taken from the sequence input file in FASTA format. Each of the following line reports the combined match of a pair of patterns. The line contains 8 columns, which are split in two groups of 4 columns organised similarly. Each group of 4 describes each pattern match in order of appearance in the sequence.
Column number | 1 | 2 | 3 | 4 |
Meaning the pattern's | Number | Type (C or G) | Sequence | Position in the sequence |
> ./SearchTandemSAGE-CG -h Usage: ./SearchTandemSAGE-CG -h print this helps Usage: ./SearchTandemSAGE-CG -pc <pattern-file-Ctype> -pg <pattern-file-Gtype> -d <sequence-file-FASTA> Default: <pattern-file-Ctype> tagsC.txt Default: <pattern-file-Gtype> tagsG.txt Default: <sequence-file-FASTA> dna.fa
SearchTandemSAGE-GC -h Usage: SearchTandemSAGE-GC -h print this helps Usage: SearchTandemSAGE-GC -pc <pattern-file-Ctype> -pg <pattern-file-Gtype> -d <sequence-file-FASTA> Default: <pattern-file-Ctype> tagsC.txt Default: <pattern-file-Gtype> tagsG.txt Default: <sequence-file-FASTA> dna.fa
./SearchTandemSAGE-CG -pc tagsC.txt -pg tagsG.txt -d dna.fa >testdna 2;C;catgctatttagtt;16;3;G;gatcagggctgagg;30; 5;C;catgtcagtttgga;46;4;G;gatcttctacttgc;60; 6;C;catgtgggcgcctt;76;1;G;gatcctcagcctcc;90; 3;C;catgcgctgtgtgc;106;2;G;gatcaaataaaaaa;120;
./SearchTandemSAGE-CG -pc tagsC.txt -pg tagsG.txt -d dna.fa > dna.resCGOutput file: dna.resCG
./SearchTandemSAGE-GC -pc tagsC.txt -pg tagsG.txt -d dna.fa > dna.resGCOutput file: dna.resGC
This document was translated from LATEX by HEVEA.