找到约 15 条结果

问题 blast2go注释,报错“Exception in thread "main" java.lang.NoClassDefFoundError: org/jdom/JDOMException”,请问如何解决,详细一点

.... 4003 associations loaded. Blast2GO build: 23092011 Change b2g-properties file to: b2gPipe.properties Blast2go.version=2.5.0 Blast2GO can not reach the Internet Blast2GO started (without GUI) create new Project set new Project Hit description position set to: 5 Hit description filter set to: GoWei...

文章 sankey_plot.r绘制桑基图

...lor [required] -o outdir, --outdir outdir output file directory [default cwd] -p prefix, --prefix prefix out file name prefix [default result] -H height, --height height the height of pic inches [default 5] -W width, --w...

问题 KEGG和GO富集分析报错问题

...设置为1,依旧提示报错:Failed to create bus connection: No such file or directory --> No gene can be mapped.... --> Expected input gene ID: LOC105382119,LOC105392385,LOC105383189,LOC105384039,LOC105384627,LOC105384151 --> return NULL... Error in barplot.default(kegg, showCate...

文章 MCScanX 安装报错,支持64位系统

 MCScanX 安装问题: make报错: g++ struct.cc mcscan.cc read_data.cc out_utils.cc dagchainer.cc msa.cc permutation.cc -o MCScanXmsa.cc: In function ‘void msa_main(const char*)’:msa.cc:289:22: error: ‘chdir’ was not declared in this scope     if (chdir(html_fn)<0)    ...

文章 gnuplot安装

...plot-4.4.0./configure --prefix=/public/software/gnuplot 4.编译 make 5.安装 make install 6.配置环境变量,编译/etc/profile.d/gnuplot.sh内容如下: export GNUPLOT=/public/software/gnuplotexport PATH=/public/software/gnuplot/bin:$PATHexport MANPATH=/public/software...

文章 遗传进化英文方法参考

...was used to sort and index the resulting Binary Alignment Map (BAM) format files[2]. Mark duplicates in Picard tools(v1.102) (http://broadinstitute.github.io/picard/) was used to discard duplicates, and  the final sorted bam results were used for downstream analysis;   Variant calling and filt...

问题 IBD计算

计算IBD 时,找不到cibd.py这个脚本, python3: can't open file '/work/script/cibd.py': [Errno 2] No such file or directory python3: can't open file '/work/script/cibd.py': [Errno 2] No such file or directory python3: can't open file '/work/script/cibd.py': [Errno 2] No such file or dire...

问题 绘制circos图,途中不显示共线性基因

...r/config1.txt -outputdir  /home/manager/GeneFA/sharegb/cir/result1 -outputfile test1 debuggroup summary 0.94s welcome to circos v0.69-6 31 July 2017 on Perl 5.018002 debuggroup summary 0.97s current working directory /home/manager/GeneFA/sharegb/cir debuggroup summary 0.97s command /biosoft/circ...

文章 图片去除大块黑色区域

... script is used to an error_bar')parser.add_argument('-i','--in_dir',help='Please input  in_dir directory path',required=True)args = parser.parse_args()pathDir =  os.listdir(args.in_dir)for allDir in pathDir:    if (re.search(r'png$',allDir)):        child = os.path.join('%s/%s' % (args.in_d...

问题 老师你好,构建进化树16S分析一直出错

...on/tmp/q2-AlignedDNAFASTAFormat-3r8bwdoj is not a(n) AlignedDNAFASTAFormat file:   The sequence starting on line 2 was length 404. All previous sequences were length 0. All sequences must be the same length for AlignedFASTAFormat. Debug info has been saved to work/my_amplicon/tmp/qiime2-q2cl...

文章 RNA-seq发文必备技能——GEO数据库上传

... easy)。 需要注意的是,注册GEO之后在上传页面的Uploading your submission 会提供FTP的地址、账号、密码等信息,需要保存备用,例如: 在Filezilla输入刚才获得的地址、帐号、密码就可以登录ftp,登录后界面如下: 登陆后在界面...

问题 老师!求解答!在TCGA数据基因ID转换中出错!!

...Genename <- get_map("../gencode.v34.annotation.gff3")  Treat input as file |--------------------------------------------------| |==================================================| Warning message: In data.table::fread(input, header = FALSE) :   Stopped early on line 266653. Expected 9 fi...

问题 Blast2go本地化过程中,运行官方文件b2g4pipe_v2.5.zip中“runPipeExample.sh“报错“The host did not accept the connection within timeout of 60000 ms;”

...construction finished ... Save Graph Calculate graph layout Generating DOT file Generating DOT file Graph Layout: GONAMEANDID Graph Layout: GONAMEANDID false Graph-Layout-Webservice has problems or is not avalible from: http://188.138.116.14/b2gws_axis2 Details: The host did not accept the connectio...

文章 转录组比对软件HISAT2的使用说明

...个用逗号隔开的文件列表,也支持多次输入  比如: '-U file1.fq,file2.fq -U file3.fq'. 选项 (括号中是默认值):  输入:   -q                 输入文件格式是FASTQ  .fq/.fastq (default)   --qseq             q输入文件格式是 Illumina's ...

文章 perl中判断数组中是否含有某个元素

...回大于4的值,过滤掉不大于4的值。 过滤掉新文件 my @files = glob "*.log"; my @old_files = grep { -M $_ > 365 } @files; print join "\n", @old_files; glob "*.log"会返回当前文件所有.log为扩展名的文件。 -M $path_to_file 返回文件最后一次修改至今的...