Hi Monks,
I have a file that is of the form given in <DATA> and 3 strings that selects the portion of the file I would like, eg
$chrom='chr1';
$start=9839;
$stop=9841;
I would like to creatre an array, @values, consisting of the values in the second column of <DATA> according to my 3 strings ,$chr,$start and $stop.
So for my example 3 strings ($chrom='chr1';$start=9839;$stop=9841;), would result in the array @values=(0.007,0.004,0.002)
I hope this makes sense?
I was hoping somebody may have some ideas to help me out
Cheers,
Chris
_DATA_
variableStep chrom=chr1
9837 0.010
9838 0.008
9839 0.007
9840 0.004
9841 0.002
9842 0.001
variableStep chrom=chr2
9837 0.090
9838 0.038
9839 0.017
9840 0.044
9841 0.052
9842 0.091
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.