perl_user123 has asked for the wisdom of the Perl Monks concerning the following question:
Dear Monks, Apologies for the previous un-formatted post.Need a bit of help with regards to the following: I have a master list of entries:
List
Gene1
Gene2
Gene3
Gene4
Gene5
Gene6
...
And in a directory I have several files like these
File1 File2 File3
Gene1 Gene2 Gene3
Gene2 Gene3 Gene4
Gene3 Gene4 Gene5
I want to compare the list with the files and create a binary matrix where '0s' represent the absence of Genes and '1s' represent the presence, like this:
File1 File2 File3
Gene1 1 0 0
Gene2 1 1 0
Gene3 1 1 1
Gene4 0 1 1
Gene5 0 0 1
Gene6 0 0 0
Can someone please help me out? Thanks in advance for any help. Regards, Anupam
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Creating a binary matrix
by davido (Cardinal) on Mar 20, 2014 at 16:57 UTC | |
by perl_user123 (Initiate) on Mar 21, 2014 at 06:23 UTC | |
by davido (Cardinal) on Mar 21, 2014 at 14:32 UTC | |
|
Re: Creating a binary matrix
by kcott (Archbishop) on Mar 21, 2014 at 08:54 UTC | |
|
Re: Creating a binary matrix
by Lennotoecom (Pilgrim) on Mar 20, 2014 at 19:23 UTC |