Hi, I am encountering some problem with looping here. How do get this line "if ($line =~ m ($gene)) {" to match all $gene in the hash?
open (LIST1, "tab_delimited.txt");
while (<LIST1>) {
($id, $product, $ec) = split(/\t/, $_);
$hash{$id} = ($product, $ec);
}...
hi,
i need to change this output
821 940 0.31 - 0 id "g1";
989 1205 0.53 - 1 id "g1";
2141 2621 0.37 - 2 id "g1";
2681 2847 0.89 - 1 id "g1";
2921 2925 0.71 - 0 id "g1";
5897 6076 0.55 + 0 id "g2";
6129 6202 0.58 + 0 id "g2";
6265 6381 0.57 + 1 id "g2";
into something like this. i.e. i need...
Hi, i'm trying to write a script to read this
YAL044W-A 0000004
YAL044W-A 0005554
YAL044W-A 0008372
and convert into this
YAL044W-A 0000004, 0005554, 0008372
unfortunately, this is as far as i get
open FH, "<infile.txt" or die $!;
open OF, ">outputfile.txt";
while (<FH>) {...
Hi!
i need to generate a pair of random numbers between 0 to 100
e.g. 0 - 2, 5 - 54, 98 - 100
there is two conditions, (1) the same number is not used as a pair e.g. 1-1, 2-2
(2) the same pair of number is not repeated and that would include 1-2, 2-1
the first condition is pretty easy, just...
Hi everyone.
I have a perl program that is invoked by the command
match.pl A B
the problem is that there is a few hundred combination of A and B that is possible
so, i am thinking of writing a new program with a small loop that generate the command to invoke the match.pl
so, how do I do...
How do i change this
YAL044W-A 0000004, 0005554, 0008372
to this?
YAL044W-A 0000004
YAL044W-A 0005554
YAL044W-A 0008372
it doesnt have to be programmatic if there is a way doing it using 'replace with' function in any text editor
Thanks a lot
open(DAT, "<$annotation_scheme_filepath")
|| die ("Cannot read file $annotation_scheme_filepath");
what does this line means?
i've been getting errors from this line
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.