Sequence extraction


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Sequence extraction
# 15  
Old 08-07-2015
Some observations about thread-O/Ps problem description:

1) The FASTA format (at least the original Pearson format) uses series of lines up to 120 characters each. Normally they are considerably shorter (80 characters and less). The discussion about line length should be moot therefore and i suppose thread-O/P just has neglected to describe his problem properly insofar as he is talking about sequence offsets, not line offsets. "500" probably means "character 20 on the seventh line" (of 80 characters each).

Still, if this is the case is everybodies guess and he should perhaps explain what he really wants.


2) Speaking of offsets: the FASTA format allows for the following nucleic acid codes only in the sequence representation:

Code:
A 	A 				Adenine
C 	C 				Cytosine
G 	G 				Guanine
T 	T 				Thymine
U 	U 				Uracil
R 	A or G 				puRine
Y 	C, T or U 			pYrimidines
K 	G, T or U 			bases which are Ketones
M 	A or C 				bases with aMino groups
S 	C or G 				Strong interaction
W 	A, T or U 			Weak interaction
B 	not A (i.e. C, G, T or U) 	B comes after A
D 	not C (i.e. A, G, T or U) 	D comes after C
H 	not G (i.e., A, C, T or U) 	H comes after G
V 	neither T nor U (i.e. A, C or G) 	V comes after U
N 	A C G T U 			Nucleic acid
X 	masked 	
- 	gap of indeterminate length

plus the following codes for amino acids:
Code:
* 	translation stop
- 	gap of indeterminate length
A 	Alanine
B 	Aspartic acid (D) or Asparagine (N)
C 	Cysteine
D 	Aspartic acid
E 	Glutamic acid
F 	Phenylalanine
G 	Glycine
H 	Histidine
I 	Isoleucine
J 	Leucine (L) or Isoleucine (I)
K 	Lysine
L 	Leucine
M 	Methionine
N 	Asparagine
O 	Pyrrolysine
P 	Proline
Q 	Glutamine
R 	Arginine
S 	Serine
T 	Threonine
U 	Selenocysteine
V 	Valine
W 	Tryptophan
X 	any
Y 	Tyrosine
Z 	Glutamic acid (E) or Glutamine (Q)

Characters other than the mentioned are ignored. Is there a rule in place if ignored character (if there are any) should be removed from the character count too (will "10" mean "tenth non-ignored character" or "tenth character overall"?


2a) What about sequence alignment?


3) Is your FASTA format the original Pearson format or the (somewhat different) NCBI format? i.e. are multi-line comments introduced with the semicolon character at the beginning of the line to be expected or not?


(for reference see : The NCBI Handbook - Chapter 16The BLAST Sequence Analysis Tool)
bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Extraction of upstream and downstream regions from long sequence file

Hello, here I am posting my query again with modified data input files. see my query is : i have two input files file1 and file2. file1 is smalldata.fasta >gi|546671471|gb|AWWX01449637.1| Bubalus bubalis breed Mediterranean WGS:AWWX01:contig449636, whole genome shotgun sequence... (20 Replies)
Discussion started by: harpreetmanku04
20 Replies

2. Shell Programming and Scripting

String Extraction

I am trying to extract a time from the below string in perl but not able to get the time properly I just want to extract the time from the above line I am using the below syntax x=~ /(.*) (\d+)\:(\d+)\:(\d+),(.*)\.com/ $time = $2 . ':' . $3 . ':' . $4; print $time Can... (1 Reply)
Discussion started by: karan8810
1 Replies

3. Shell Programming and Scripting

find common entries and match the number with long sequence and cut that sequence in output

Hi all, I have a file like this ID 3BP5L_HUMAN Reviewed; 393 AA. AC Q7L8J4; Q96FI5; Q9BQH8; Q9C0E3; DT 05-FEB-2008, integrated into UniProtKB/Swiss-Prot. DT 05-JUL-2004, sequence version 1. DT 05-SEP-2012, entry version 71. FT COILED 59 140 ... (1 Reply)
Discussion started by: manigrover
1 Replies

4. UNIX for Dummies Questions & Answers

fast sequence extraction

Hi everyone, I have a large text file containing DNA sequences in fasta format as follows: >someseq GAACTTGAGATCCGGGGAGCAGTGGATCTC CACCAGCGGCCAGAACTGGTGCACCTCCAG GCCAGCCTCGTCCTGCGTGTC >another seq GGCATTTTTGTGTAATTTTTGGCTGGATGAGGT GACATTTTCATTACTACCATTTTGGAGTACA >seq3450... (4 Replies)
Discussion started by: Fahmida
4 Replies

5. Shell Programming and Scripting

extraction

I have following input @xxxxxx@ I want to extract what's between @....@ that is : xxxx using SED command (6 Replies)
Discussion started by: xerox
6 Replies

6. Programming

extraction from a path

Hi, Can you help me on this two problems? how can i get : from input: /ect/exp/hom/bin ==> output: exp and from input: aex1234 =====>output: ex thanks, (1 Reply)
Discussion started by: yeclota
1 Replies

7. Shell Programming and Scripting

Regex extraction

Hello, I need your help to extract text from following: ./sherg_fyd_rur:blkabl="R23.21_BL2008_0122_1" ./serge_a75:rlwual="/main/r23.21=26-Mar-2008.05:00:20UTC@R11.31_BL2008_0325" ./serge_a75:blkabl="R23.21_BL2008_0325" ./sherg_proto_npiv:bkguals="R23.21_BL2008_0302 I80_11.31_LR" I... (11 Replies)
Discussion started by: abdurrouf
11 Replies

8. Shell Programming and Scripting

extraction of last but one char

I need to extract the character before the last "|" in the following lines, which are 'N' and 'U'. The last "|" shouldn't be extracted. Also the no.s of "|" may vary in a line, but I need only the character before the last one. ... (5 Replies)
Discussion started by: hidnana
5 Replies

9. Shell Programming and Scripting

AWK extraction

Hi all, I have a data file from which i would like to extract only certain fields, which are not adjacent to each other. Following is the format of data file (data.txt) that i have, which has about 6 fields delimited by "|" HARRIS|23|IT|PROGRAMMER|CHICAGO|EMP JOHN|35|IT|JAVA|NY|CON... (2 Replies)
Discussion started by: harris2107
2 Replies

10. Shell Programming and Scripting

Help with tar extraction!

I have this tar file which has files of (.ksh, .ini &.sql) and their hard and soft links. Later when the original files and their directories are deleted (or rather lost as in a system crash), I have this tar file as the only source to restore all of them. In such a case when I do, tar... (4 Replies)
Discussion started by: manthasirisha
4 Replies
Login or Register to Ask a Question