Linux学习笔记01
今日的工作:
完成24个转录组数据的比对(到参考基因组) 1.处理参考基因组,黑盒模型——hisat2 2.hisat2比对出sam 3.samtools 转sam为bam 4.生成bam index方便后续IGV软件操作
熟悉:htop
,hisat
问题:
samtools: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory
原因是没有安装 依赖库:libncurses
按照网络教程来安装:
1
sudo apt-get install lib32ncurses5
1
E: The package mega-cc needs to be reinstalled, but I can't find an archive for it
mega-cc
软件包安装出错,所以需要删除
1
2cp /var/lib/dpkg/status status.bkp
chmod 777 /var/lib/dpkg/status
随后运行程序还是报错 1
error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory
1
sudo ln -s /usr/lib32/libncursesw.so.6.1 /usr/lib/libncurses.so.5
1
sudo apt-get install libncurses5