convert one column values into row values based on other row values
1
0
Entering edit mode
7.4 years ago
newbiebio ▴ 80

I have two columns, one column is the name of wells, the other column is the ct values. ex

well    ct
A    10
A    9
A    NA
A    19

Now I want to put the ct values into one row based on well name. Each column is one ct value, NA is a value too. ex

Well ct
A    10   9    NA   19

I tried to used aggregae in r, but it omits NA and put all the values in a vector into one columns,

R • 2.8k views
ADD COMMENT
1
Entering edit mode

This is a programming question not a Bioinformatics one!

ADD REPLY
0
Entering edit mode

It's a thin line, considering that this issue is clearly a bio-application which OP tries to solve informatically...

ADD REPLY
2
Entering edit mode
7.4 years ago
venu 7.1k

An alternate (to R) quick solution

cat file.txt | datamash -H -s -g 1 collapse 2 > result.txt

result.txt

GroupBy(well)   collapse(ct)
A   10,9,NA,19
B   11,12

P.S: datamash & add | tr ',' '\t' at the end of the command if it is nesessary to convert commas into tabs

ADD COMMENT

Login before adding your answer.

Traffic: 2427 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6