回答于 2018-10-11 16:58
wk -F "copy number loss" '{if(NF==2){print $0}}' test1.txt |awk -F "\t" '{for(i=1;i<=NF;i++){if($i=="copy number loss" && i==2){print $0}}}'|less -S
回答于 2018-10-11 16:56
http://www.datacarpentry.org/dc_zurich/R-ecology/05-visualisation-ggplot2.html
回答于 2018-01-13 10:35
这篇文章有您要的资料https://www.shengxin.ren/article/96
回答于 2017-12-12 21:09
回答于 2017-11-21 20:46
https://www.researchgate.net/post/How_can_you_combine_different_published_expression_datasets_and_analyze_them_in_R 在这里有一个R包virtualArray可以做,但是这个包已经好几年没更新了
回答于 2017-11-21 20:39
首先,你需要进入目标文件夹, cd命令就可以。 其次,你可以在当前的文件夹创建一个临时文件夹,mkdir temp。 再者,运行以下命令,ls -1 | grep -E 'txt' | while read file ;do cut -f1 $file >./temp/$file;done 最后,进入temp文件夹,paste * >all.txt
回答于 2017-11-21 20:35