我对编码非常陌生,所以我不太确定如何处理这个问题。我想看看我们得到的一些数据,然后用俾斯麦对它们进行排序。我已经使用Trim Galore来削减读取,现在我想把数据输入俾斯麦。然而,我不太确定如何处理这个问题。在文档中,它说它需要Perl来运行,所以我从github下载了Perl和Bismark zip文件。我还下载了bowtie2 zip文件,并将两个zip文件解压缩到同一个目录中。然后打开Perl命令提示符,并将目录设置为带有提取文件夹的目录。我把这句话写在:
> \bismark\bismark_genome_preparation --path_to_bowtie ^
C:\Users\sevro\Documents\Lab_Code\bowtie2-master --verbose ^
C:\Users\sevro\Documents\Lab_Code\genome
The system cannot find the path specified.在将目录更改为Bismark文件夹后,我也尝试过这样做:
> perl bismark
Failed to execute Bowtie 2 porperly (return code of 'bowtie2 --version' was 256).
Please install Bowtie 2 or HISAT2 first and make sure it is in the PATH,
or specify the path to the Bowtie 2 with --path_to_bowtie2 /path/to/bowtie2,
or --path_to_hisat2 /path/to/hisat2我尝试了一些其他的东西,但总的来说,我有点困惑如何准确地处理这个问题。我现在下载的东西:
Bismark zip文件- https://github.com/FelixKrueger/Bismark
Bowtie2 zip文件- https://github.com/BenLangmead/bowtie2
.fa格式的基因组组装
我想用fasta格式分析的数据
任何洞察力都会有帮助。
发布于 2021-11-11 20:03:30
我认为Bismark和bowtie2只在本地支持Linux和macOS。如果您想在Windows上使用bismark,可以尝试通过Cygwin、MSYS2等*nix仿真系统安装它,或者简单地使用WSL。我在WSL上用Ubuntu20.04在Windows 11上测试了这一点:
~/bowtie2/bowtie2-2.4.4-linux-x86_64文件夹。~/bismark/Bismark-0.23.1/https://stackoverflow.com/questions/69921552
复制相似问题