SequenceServer搭建网页服务
Last updated
Was this helpful?
Last updated
Was this helpful?
sequenceserver基于ruby
开发的,所以得先下载ruby
安装
sequenceserver
过程中报错 undefined method `slice!' for nil:NilClass由于我的版本是centos6,版本太低了;yum源里面安装的ruby版本只有1.8.7;只能自己冲源代码安装
参考
首先使用yum安装依赖
从源代码安装ruby
下载地址
sequenceServe默认的配置文件为~/.sequenceserver.conf
;也可以使用-c
参数指定对应的配置文件
增加配置信息到对应的配置文件-s
参数
其他配置参数
Configuration file
Command line
Description
:bin:
-b / --bin
Indicates path to the BLAST+ binaries.
:database_dir:
-d / --database_dir
Indicates path to the BLAST+ databases.
:num_threads:
-n / --num_threads
Number of threads to use for BLAST search.
:host:
-H / --host
Host to run SequenceServer on.
:port:
-p / --port
Port to run SequenceServer on.
:require:
-r / --require
Load extension from this file.
为了提高数据下载功能,可以在node中建一个软连接把这里的基因组数据给导过去
blast索引文件和fasta文件都放在同一个目录下,程序将会递归的搜索
不仅仅可以·比对本地库,sequenceserve同样还可以比对到NCBI中已经发表的库
这个之后再实现一下
打算使用iframe
标签直接把sequencceserver页面引用过去,仅仅改一下UI界面。有两种方法
第一种从源代码更改
第二种从gem安装文件中更改
修改views
目录下对应的erb
文件,打算删除掉那个navbar,只用删除search.reb中的navbar
html标签内容
访问地址:默认情况下是
参考
下载源代码:地址
参考
参考
参考