Displaying 1 result from an estimated 1 matches for "nm_153027".
Did you mean:
nm_153008
2011 Jun 10
2
Sorting Data Frame Without Loop
...as I am working with around 30,000 entries, it proved too slow and I'm not sure how to do it in another way.
Here is an example of the input.
ProteinID
GeneID
GeneName
M-012847-00
NM_057175
NARG1
M-012847-00
NM_057175
TBDN100
M-015544-00
NM_153008
FLJ30277
M-015544-00
NM_153027
FLJ31659
M-024202-00
NM_207330
NIPAL1
M-024202-00
NM_207330
NPAL1
Here is an example showing what I want:
ProteinID
GeneID
GeneName
M-012847-00
NM_057175
NARG1, TBDN100
M-015544-00
NM_153008, NM_153027
FLJ30277, FLJ31659
M-024202-00
NM_207330
NIPAL1, NPAL1
Here is t...