I have many dataframe to open and assume it in folder named 'CNV'
Ss I read this link [1]: Opening all files in a folder, and applying a function but I'm still confuse.
Assume I have file name a, b ,c ,d ,e .... z in folder CNV in desktop
In these file have same column
Sample, start, stop, event, probe, length
qd1234, 2666, 2888, CN gain, 23, 235
cc234, 1000, 1500, CN loss, 5, 500
My question is how to open all files in one time and after open all of these file
I want to select CN gain which have probe number more than 5, CN loss probe number more than 3, and the probe/length less than 30
The expected result :
a
Sample, start, stop, event, probe, length, length/probe
qd1234, 2666, 2888, CN gain, 23, 235, 9
qd1534, 1200, 1800, CN loss, 60, 600 10
b
Sample, start, stop, event, probe, length, length/probe
qd234, 2666, 2888, CN gain, 23, 235, 9
qd534, 1200, 1800, CN loss, 60, 600 10
`. And do learn to use the SO formatting conventions. – IRTFM Aug 09 '13 at 06:06
– Vayami Aug 09 '13 at 07:15