找到约 15 条结果

问题 运行perl脚本报错Can't open perl script "/home/manager/share/share1/domain_xulie.pl": No such file or directory

问题 python3.9: error while loading shared libraries: libpython3.9.so.1.0: cannot open shared object file: No such file or directory

报错

文章 bioperl读写fasta/fastq压缩文件

...: 输入文件句柄: fastq文件 open my $FQ ,"zcat infile.fq.gz|" or die "$!"; my$fq=Bio::SeqIO->new(-fh=>$FQ,-format=>'fastq'); fasta文件 open my $FA ,"zcat infile.fa.gz|" or die "$!"; my$fa=Bio::SeqIO->new(-fh=>$FA,-format=>'fasta');  输出文件句柄...

文章 VG 泛基因组call 变异

...s used to call variants from the 16 Illumina WGS barn swallow individuals.#for steps 1-3, this github solution was followed: https://github.com/vgteam/vg/issues/3411#for steps 4-9, the section "Calling the graph by first splitting into components" of this tutorial was followed:  https://github.com/...

文章 seqkit序列处理神器的常用命令

...如要提取的序列ID。-R, --region string匹配位置选择。e.g 1:12 for first 12 bases, -12:-1 for last 12 bases-r, --use-regexp使用正则表达式,必须加入此参数,如^匹配首端。同-p联合使用。 举例: seqkit grep -s -r -i -p ^atg cds.fa#选取有起始密码子的...

问题 抱歉打扰,我在做circos时遇到了下面问题,看到了您也遇到相似问题,想知道您是如何解决的,期待您的回复。

...e parameters that define the image, including input files,   image size, formatting, etc.   If you do not use the -conf flag, Circos will attempt to look for a file   circos.conf in several reasonable places such as . etc/ ../etc   To see where Circos looks for the file, use       ...

文章 常见的OrgDB包,方便对应物种注释

... org.Hs.eg.dbBioconductor Package MaintainerGenome wide annotation for Human3org.Mm.eg.dbBioconductor Package MaintainerGenome wide annotation for Mouse5org.Rn.eg.dbBioconductor Package MaintainerGenome wide annotation for Rat14org.Dm.eg.dbBioconductor Package MaintainerGenome wide annotatio...

文章 简单的数据处理代码

#!/usr/bin/env python3'''used for CountSummarizer, DataFetcher and TaxonomyAdderauhtor, Xunlast modified, 2023-07-07Mail, makise.kurisu.yoru@gmail.com'''import pandas as pdimport argparseclass CountSummarizer:    def __init__(self, args):        self.args = args    def norm_expr(self, probe_...

文章 去除文件中的空行

... tmp.txt a b c d e sed $ sed '/^$/d' tmp.txt grep $ grep . tmp.txt or $ grep -Ev "^$" tmp.txt or $ grep -v -e '^$' tmp.txt awk $ awk NF tmp.txt or $ awk '!/^$/' tmp.txt or $ awk '/./' tmp.txt tr $ cat tmp.txt | tr -s '\n' 此外,我们在网易云课堂上有各种教学视频,有...

用户 for i in $

问题 很久不用docker 后,再次打开docker时提示docker failed to initialize Docker Desktop is shutting down怎么办呢?删除 AppData\Roaming\Docker\settings.json也不能解决问题

问题 请问在运行利用exprs()获取表达矩阵 exprSet = exprs(gset)时,报错Error in (function (classes, fdef, mtable) : unable to find an inherited method for function ‘exprs’ for signature ‘"factor"’不知道什么原因?

请问在运行利用exprs()获取表达矩阵  exprSet = exprs(gset)时,报错Error in (function (classes, fdef, mtable)  :    unable to find an inherited method for function ‘exprs’ for signature ‘"factor"’不知道什么原因?

文章 hclust_analysis.r 转录组数据层次聚类分析

...ax.nc max.nc                        maximal number of clusters for nbclust, between 2 and                        (number of objects - 1), greater or equal to min.nc.                        By default [optional, default: 15]  -k bestk, --bestk bestk          ...

问题 clustalw2多序列比对,序列输入不进去

...******************************************     1. Sequence Input From Disc     2. Multiple Alignments     3. Profile / Structure Alignments     4. Phylogenetic trees     S. Execute a system command     H. HELP     X. EXIT (leave program)Your choice:我输入1, 回车,出...

文章 reticulate 指定python版本

library(reticulate) use_python('/share/work/biosoft/python/Python3/bin/python3',required = T) #查看python路径 Sys.which("python") "D:\\ProgramData\\Anaconda21\\python.exe"