|
|
Up |
|
|
  |
Author: Amy LeeAmy Lee Date: May 9, 2008 19:30
Hello,
I have a problem while I'm processing my sequence file. The file content
is like this.
>seq1
ACGGTC
ACTG
>seq2
CGATCC
ACCTC
>seq3
......
|
| Show full article (0.60Kb) |
|
| | 8 Comments |
|
  |
Author: Jürgen ExnerJürgen Exner Date: May 9, 2008 20:43
Amy Lee gmail.com> wrote:
>I have a problem while I'm processing my sequence file.
I know text files, binary files, random access files, sequential files,
but I've never heard of a sequence file.
>The file content
>is like this.
>
>>seq1
>ACGGTC
>ACTG
>>seq2
>CGATCC
>ACCTC
>>seq3
>......
>
>And I hope make every sequence into a single file. For example, a file
What is a sequence?
|
| Show full article (0.81Kb) |
|
| | no comments |
|
  |
Author: Amy LeeAmy Lee Date: May 10, 2008 00:16
Jue,
My most work is to process DNA so I save DNA sequences as a format called
FastA as you've seen before. And you could call my file dna.fasta, the
content is
>seq1
ACGGTC
ACTG
>seq2
CGATCC
ACCTC
>seq3
......
The "seq1" "seq2" "seq3" and "seqx" is the names of these sequences. I can
say, it's a mark. And under "seqx" it's DNA sequences. My point is quite
simple, I wanna extract every sequences as a file saved. I mean I can
extract sequences for dna.fasta and make a single file for every sequences.
There's an example.
|
| Show full article (0.85Kb) |
| no comments |
|
  |
Author: Jürgen ExnerJürgen Exner Date: May 10, 2008 05:11
Amy Lee gmail.com> wrote:
>My most work is to process DNA so I save DNA sequences as a format called
>FastA as you've seen before. And you could call my file dna.fasta, the
>content is
>
>>seq1
>ACGGTC
>ACTG
>>seq2
>CGATCC
>ACCTC
>>seq3
>......
From your previous description I thought those were 3 separte files.
Obviously I was wrong.
>The "seq1" "seq2" "seq3" and "seqx" is the names of these sequences. I can
>say, it's a mark. And under "seqx" it's DNA sequences. My point is quite
>simple, I wanna extract every sequences as a file saved. I mean I can
>extract sequences for dna.fasta and make a single file for every sequences.
|
| Show full article (0.89Kb) |
| no comments |
|
  |
Author: John W. KrahnJohn W. Krahn Date: May 10, 2008 05:21
Amy Lee wrote:
>
> I have a problem while I'm processing my sequence file. The file content
> is like this.
>
>> seq1
> ACGGTC
> ACTG
>> seq2
> CGATCC
> ACCTC
>> seq3
> ......
>
> And I hope make every sequence into a single file. For example, a file
> "seq1" content is
>> seq1
> ACGGTC
> ACTG
> And a file "seq2" content is ...
|
| Show full article (0.73Kb) |
| no comments |
|
  |
|
|
  |
|
|
  |
Author: Amy LeeAmy Lee Date: May 10, 2008 08:04
On Sat, 10 May 2008 12:11:30 +0000, Jürgen Exner wrote:
> Amy Lee gmail.com> wrote:
>>My most work is to process DNA so I save DNA sequences as a format called
>>FastA as you've seen before. And you could call my file dna.fasta, the
>>content...
|
| Show full article (1.07Kb) |
| no comments |
|
  |
|
|
  |
Author: Jürgen ExnerJürgen Exner Date: May 10, 2008 09:03
Amy Lee gmail.com> wrote:
>Anyway, could you tell me how to find out the usage of "select" function?
The usage of each perl function is described in the first line(s) of the
manual page for this function. It doesn't explicitely say "Usage" as in
Unix man pages, but it has the same format:
select FILEHANDLE
Sometimes, if a function is overloaded, there may be additional usages
farther down the page, too, e.g.
select RBITS,WBITS,EBITS,TIMEOUT
jue
|
| |
| no comments |
|
|