科学网

 找回密码
  注册

tag 标签: 本地化

相关帖子

版块 作者 回复/查看 最后发表

没有相关内容

相关日志

UCSC Genome Browser 本地化 on Redhat
hongbo919 2014-11-4 09:10
Installing a Browser Mirror on Linux Red Hat #环境:Red Hat Enterprise Linux Server release 6.2 (Santiago);Linux version 2.6.32-220.el6.x86_64 #安装Mysql数据库。 yum -y install mysql-server #新建一个用户。 mysql –u 用户名 –p 密码 create user 'user'@'localhost' identified by 'PASSWORD'; grant all privileges on hg19.* to 'user'@'localhost' flush privileges; #这里面的密码是进入user这个数据库的密码,非mysql登录。user作为名称可以随意替换,但是下文相应的部分也要改。不熟练的话不建议修改。 #安装Apache。 yum -y install httpd sudo service apache2 restart #下载必须的libraries sudo yum install libssl0.9.8 sudo ln -s /usr/lib/libssl.so.0.9.8 /usr/lib/libssl.so.6 sudo ln -s /usr/lib/libcrypto.so.0.9.8 /usr/lib/libcrypto.so.6 #将UCSC放在www/genomebrowser下(如果你的服务器只放该浏览器镜像的话,建议将其直接放在www下),下载html文件(大概耗时0.5-2小时)。 sudo mkdir /var/www/genomebrowser sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/htdocs/ /var/www/genomebrowser/ #安装Genome Browser(大概耗时0.5-2小时)。 sudo mkdir -p /var/www/genomebrowser/cgi-bin sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/cgi-bin/ /var/www/genomebrowser/cgi-bin/ sudo chown -R 755 /var/www/genomebrowser/cgi-bin/ #给genomebrowser访问权限 sudo chown -R 755 /var/www/genomebrowser/ #建立缓存文件夹 sudo rm /var/www/genomebrowser/trash sudo mkdir /var/www/genomebrowser/trash sudo chown -R 755 /var/www/genomebrowser/trash #提供Javascript文件 sudo mkdir -p /usr/local/apache/htdocs/ sudo ln -s /var/www/genomebrowser/js/ /usr/local/apache/htdocs/js sudo ln -s /var/www/genomebrowser/style/ /usr/local/apache/htdocs/style #创建并修改/var/www/cgi-bin/hg.conf文件 #可以基于官网提供的.conf进行修改,官网的版本还有很多额外的功能,下载地址如下: http://genome-test.cse.ucsc.edu/~kent/src/unzipped/product/ex.hg.conf gedit /var/www/genomebrowser/cgi-bin/hg.conf #添加以下内容: # Configuration file for the UCSC Human Genome server defaultGenome=Human browser.documentRoot=/var/www/genomebrowser # the format is in the form of name/value pairs, written as 'name=value' # note that there is no space between the name and its value. Also, no blank lines #should be in this file. # db.host is the name of the MySQL host to connect to db.host=localhost # db.user is the username used when connecting to the host db.user=user # this is the password to use with the above hostname db.password=PASSWORD db.trackDb=trackDb # central.host is the name of the host of the central MySQL # database where stuff common to all versions of the genome # and the user database is stored. central.db=hgcentral central.host=localhost central.user=user central.password=PASSWORD central.domain= backupcentral.db=hgcentral backupcentral.host=localhost backupcentral.user=user backupcentral.password=PASSWORD backupcentral.domain= ###########################添加的内容结束##################### sudo chown -R 755 /var/www/genomebrowser/cgi-bin/hg.conf #配置Apache服务器,使下载的html、cgi-bin可以正常显示。 #进入/usr/local/apache/conf目录。httpd.conf文件是Redhat系统中Apache的主要配置文件,谨慎添加内容,用文本编辑器建立httpd.conf并添加如下内容。位置可以放在Directory "/var/www/cgi-bin".../Directory下一行。 gedit /usr/local/apache/conf/httpd.conf ###########################以下为添加的内容#################### #Setting for genomebrowser in httpd.conf #Enable SSI XBitHack on Directory /var/www/genomebrowser/ AllowOverride AuthConfig Options Indexes FollowSymLinks MultiViews Includes Order allow,deny allow from all AddType text/html .shtml AddOutputFilter INCLUDES .shtml /Directory #Enable CGI ScriptAlias /genomebrowser/cgi-bin/ /var/www/genomebrowser/cgi-bin/ Directory /var/www/genomebrowser/cgi-bin AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all AddHandler cgi-script cgi pl /Directory ###########################添加的内容结束##################### #进行到此步应该已经可以用 http://localhost/genomebrowser/ 访问本地化的UCSC,如果显示不正常,则可能是由于Server Side Includes (SSI) on Apache没有正常启动 #重新检查以上/usr/local/apache/conf/httpd.conf是否配置正确,按照以上说明进行正确配置即可。 #重启apache2服务器 sudo service apache2 restart #若此时出现CGI "Internal Server Error" 错误,则可以通过更改/var/www/genomebrowser/cgi-bin/的权限来解决 chmod 755 -R /var/www/genomebrowser/cgi-bin sudo service apache2 restart #进一步出现userDb不能写的问题: #Can't start query: INSERT userDb VALUES(0,"",0,now(),now(),0) #mySQL error 1036: Table 'userDb' is read only #可以通过修改/var/lib/mysql的权限来解决 sudo chown -R mysql:mysql /var/lib/mysql #重启mysql sudo service mysql restart #此时可以看到genomebrowser,如果显示不正常,导航栏异常,原因在于Redhat下Apache没有默认地读取htdocs(Ubuntu下Apache默认是读htdocs的) #解决这个问题只需将genomebrowser下的js和style两个文件夹复制到www下即可。 cp -R /var/www/genomebrowser/style /var/www/ cp -R /var/www/genomebrowser/js /var/www/ #此时如果提示错误Permission denied failed to create directory ../trash/hgt,初步估计是因为trash文件夹没有写的权限所致 chmod 777 -R /var/www/genomebrowser/trash/ #如果遇到导航栏中某些链接指向www/cgi-bin的问题(因为默认的UCSC浏览器是放在www下的),目前比较保守的解决办法是将genomebrowser/cgi-bin下的文件复制到www/cgi-bin(注意此方法并未完全解决链接问题) cp -Rf /var/www/genomebrowser/cgi-bin/* /var/www/cgi-bin/ #建立Mysql tables。 #首先要下载hgcentral.sql,把他放进mysql的目录,然后写入本地数据库文件。 wget http://hgdownload.cse.ucsc.edu/admin/hgcentral.sql mysql -u root -p -e create database hgcentral mysql -u root -p hgcentral /home/download/hgcentral.sql mysql -u root -p -e grant all privileges on hgcentral.* to 'user'@'localhost' mysql -u root -p -e create database hgFixed mysql -u root -p -e grant select on hgFixed.* to 'user'@'localhost' #UCSC提供了很多物种的Genome数据库。 #以hg19为例,如果要整个下载hg19的数据库,可以用下面的命令,请务必保证硬盘在500G以上(网速好的话,尚需3-4天下载完所有数据) sudo mkdir /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/ /var/lib/mysql/hg19 #若想尽快实现UCSC本地化且并不需要所有的data,则可以先下载部分必要的table,等本地化完成之后再增加需要的表。 #根据吕杰( http://blog.csdn.net/biocq/article/details/8954749 )的经验,hg19数据库中至少要有以下几个表 grp trackDb hgFindSpec chromInfo gold gap #因此分别利用以下语句下载这些表(注,每个表都对应下面的三个文件,.MYD .MYI和.frm) sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/grp.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/grp.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/grp.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/trackDb.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/trackDb.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/trackDb.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/hgFindSpec.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/hgFindSpec.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/hgFindSpec.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/chromInfo.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/chromInfo.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/chromInfo.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/gold.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/gold.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/gold.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/gap.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/gap.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/gap.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/oregannoAttr.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/oregannoAttr.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/oregannoAttr.frm /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/refLink.MYD /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/refLink.MYI /var/lib/mysql/hg19 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hg19/refLink.frm /var/lib/mysql/hg19 #此外,要想实现UCSC本地化,MySQL数据库中至少应该有如下几个数据库: customTrash hg19 hgFixed hgcentral proteinDB proteins proteome swissProt uniProt #因此分别利用以下语句下载这些数据库 sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/hgFixed/ /var/lib/mysql/hgFixed sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/uniProt/ /var/lib/mysql/uniProt/sp120323/ sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/swissProt/ /var/lib/mysql/uniProt/sp111004/ sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/proteome/ /var/lib/mysql/proteinDB/proteins120806/ sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/mysql/proteins/ /var/lib/mysql/proteinDB/proteins111004/ #再在根目录下建立gbdb文件夹,至少需要下载对应物种(如hg19)的.2bit文件或nib文件 sudo mkdir /gbdb chmod 755 -R /gbdb sudo rsync -avzP rsync://hgdownload.cse.ucsc.edu/gbdb/hg19/ /gbdb/hg19/ #这样下载的文件会很多,建议提示下载什么下载什么 rsync -avzP rsync://hgdownload.cse.ucsc.edu/gbdb/hg19/multiz100way/ /gbdb/hg19/multiz100way/ rsync -avzP rsync://hgdownload.cse.ucsc.edu/gbdb/hg19/wib/laminB1.wib /gbdb/hg19/wib/ #其他可能出现的问题 1、切记不要在虚拟机下的linux(无论是Redhat还是Ubuntu)系统中本地化UCSC,会遇到mysql占用大量CPU的问题。2、UCSC会遇到一个问题:Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (13)。 可能是由于mysql版本的更新,.sock文件放的位置不同了。解决方法: sudo ln -s /var/run/mysqld/mysqld.sock /var/lib/mysql/mysql.sock sudo chmod 666 /var/lib/mysql/mysql.sock sudo chmod 755 /var/lib/mysql/ 再次尝试访问genome browser,会遇到以下警告: Warning/Error(s): Couldn't connect to database hg19 on localhost as user. Access denied for user 'user'@'localhost' to database 'hg19' 说明目前还没有hg19数据库,接下来构建hg19并下载必要的文件,有时提示hg19.*,这说明缺少某个表,可以单独下载此表。 3、如果出现Warning/Error(s):External file /gbdb/hg19/multiz100way/maf/chr21.maf cannot be opened or has wrong size. Old size 8328154035, new size -1, error No such file or directory 则说明gbdb文件夹下缺少相应的文件,下载即可。 4、如果已经下载了本地化相关的大量文件,完全可以通过复制的办法来重新本地化,无需再次从UCSC网站下载。 5、如果本地根目录空间太小,无法存放mysql和gbdb两个超级文件夹,可以通过软链接(ln)的方式将其转移至较大的空间内。 (1)转移mysql目录: cp -aR /var/lib/mysql/. /pub3/mysql cd /var/lib/ mv mysql mysql_bei #将原有的mysql重命名,作为备份以防万一,同时也为成功做软链接做准备 ln -s /pub3/mysql /var/lib/mysql chown -R mysql:mysql /pub3/mysql service mysql start (2)转移gbdb目录 cp -aR /gbdb/. /pub3/gbdb mv gbdb gbdb_bei #以防万一 ln -s /pub3/gbdb /gbdb 至此,UCSC的本地化完成。祝好! 其他供参考的UCSC本地化教程: UCSC Genome Browser 本地化官方指南 UCSC Genome Browser 本地化官方指南 (详细wiki) UCSC Genome Browser 本地化Google论坛 UCSC Genome Browser 本地安装指南 by 卢金龙 UCSC Genome Browser 本地化安装指南(Ubuntu)by 吕杰 For any more questions, please contact hongbo919@gmail.com .
4673 次阅读|0 个评论
最新版BLAST+的本地化(BLAST2.2.29+单机运行)
热度 1 bigdataage 2012-12-8 18:57
Linux下BLAST+的本地化 ( NCBI-BLAST 2.2.29+ 单机运行的方法) (第7次修改 , Final Version) 本人在以下环境亲测有效:CentOS Linux 64 Bit. 下面涉及到的路径需要根据自己的电脑来修改。 Linux下BLAST+的本地化(NCBI-BLAST 2.2.29+): 1. 下载软件 BLAST : 在以下网址 ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ 下载: ncbi-blast-2.2.29+-x64-linux.tar.gz (根据自己的操作系统选择)。 2. 解压: 解压后放在任意目录下都可以,把相应路径加入PATH变量就是。 比如解压到用户的主目录(/home/yonpen)下,把解压后的文件夹重新命名为blast,则BLAST+的所有程序在目录/home/yonpen/blast/bin下。 3. 添加环境变量: 打开终端(Terminal),切换为root用户,执行vim /etc/profile (需要了解Vim编辑器的基本命令)。 在最末尾添加: export PATH=/home/yonpen/blast/bin:$PATH 保存退出。(环境变量的值由Blast所在路径决定。) 此处若成功,注销以后执行blastn -version会出现版本信息(一定要先注销或重启电脑)。 4. 新建: 在目录/home/yonpen/blast下新建一个文件夹,命名为db 。 在/home/yonpen下新建一个文件,命名为.ncbirc 。(文件名是以点号开头的) 在文件中添加内容: BLASTDB=/home/yonpen/blast/db 5. 下载FASTA格式的数据库: ftp://ftp.ncbi.nlm.nih.gov/blast/db/FASTA/ 如下载nr.gz。 6. 建立BLAST+可用的数据库: 打开终端(Terminal),切换到/home/yonpen/blast/db目录下,执行(以蛋白质库nr为例): makeblastdb –in nr -parse_seqids -hash_index -dbtype prot (需要自己输入,复制这行命令可能不行,不知道为什么) 7. 使用程序: 如使用psiblast 在目录/home/yonpen/blast下新建3个文件夹,分别命名为pssm,input,output 设待查询序列所在文件的名字为a.fasta(一个文件放一条序列,且必须为fasta格式) 执行命令: psiblast -comp_based_stats 1 -evalue 0.001 -num_iterations 3 -db nr -query input/a.fasta -out output/a.txt -out_ascii_pssm pssm/a.pssm
15629 次阅读|1 个评论
LINUX下BLAST+的本地化(新版blast)
热度 1 ywpeng 2012-9-4 11:15
LINUX下BLAST+的本地化(ncbi-blast-2.2.26): 1 下载程序: 在ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/下载 ncbi-blast-2.2.26+-x64-linux.tar.gz 2 解压: 如解压到用户的主目录(/home/yonpen)下,把解压后的文件夹重新命名为blast,则BLAST+的所有程序在目录/home/yonpen/blast/bin下。 3 添加环境变量: 打开终端(Terminal),切换为root用户,执行vim /etc/profile 在最末尾添加export PATH=”/home/yonpen/blast/bin:$PATH”,保存退出。 或直接找到/etc/profile这个文件,在最末尾添加export PATH=”/home/yonpen/blast/bin:$PATH” 此处若成功,则执行blastn -version会出现版本信息。 4 新建: 在目录/home/yonpen/blast下新建一个文件夹,命名为db 在/home/yonpen下新建一个文件,命名为.ncbirc 在文件中添加内容 BLASTDB=/home/yonpen/blast/db 5 下载FASTA格式的数据库: ftp://ftp.ncbi.nlm.nih.gov/blast/db/FASTA/ 如下载nr.gz 6 建立BLAST+可用的数据库: 打开终端(Terminal),切换到/home/yonpen/blast/db目录下,执行: makeblastdb –in nr -parse_seqids -hash_index -dbtype prot 7 使用程序: 如使用psiblast 在目录/home/yonpen/blast下新建3个文件夹,分别命名为pssm,input,output 设待查询序列所在文件的名字为3.fasta(一个文件放一条序列,且必须为fasta格式) 执行命令: psiblast -comp_based_stats 1 -evalue 0.001 -num_iterations 3 -db nr -query input/3.fasta -out output/3.txt -out_ascii_pssm pssm/3.pssm
6428 次阅读|1 个评论
LCA Q&A:特征化因子与权重因子及其本地化
热度 1 wanght 2012-7-24 22:27
从 LCA 计算的角度看,特征化因子( Characterization Factor )和权重因子都是折算因子(或者称为当量因子),其目的是将不同种类的 LCA 指标汇总为更加综合性的评价指标,从而支持更全面的分析。值得注意的是,特征化因子和权重因子与各个国家和地区的环境背景条件、环境关注重点和环境目标相关,因此应该反映本地化的特点。 1) 对于很多 Mid-point 类型的 特征化因子 而言,通常是基于基本的物质性质得到特征化因子,而与环境背景条件无关。例如 CML 方法中的酸化因子 AP 是基于酸性气体理论上能够电离出的 H 离子数量、富营养化因子 EP 是基于氮、磷元素含量等。这些因子原则上适用于任何国家,不需要本地化,但也因此并未衡量实际的环境损害。 2) 大多数 End-point 类型的 特征化因子 通常是基于更复杂的环境特征化模型得到的,通常包含污染物质寿命模型( fate )、在环境中的传输模型( transport )、对人体或生态环境的曝露模型( exposure )以及对人体或生态环境的影响和损害模型( damage ,即 end-point )。由此得到的特征化因子必然包含不同地区的环境背景条件(如大气、水体、土壤、生态系统条件),试图反映各种环境排放可能造成的潜在损害,从而将其汇总在一起。但得到 End-point 因子的模型非常复杂,需要大量的环境背景数据支持,目前在中国的研究甚少。 3) 权重因子 :即便将各种环境排放的损害汇总为人体健康损害、生态环境损害(此外还有资源消耗,这三种类型统称为 aera of protection ),也很难继续通过科学的模型和因子进一步汇总。因此,传统上只能采用比较主观的方法,得出权重因子,以便继续汇总。例如,专家调查法( panel method )询问一组专家的意见,得出各种环境影响类型或损害的重要性评分。也可以基于支付意愿( willingness-to-pay )等方法,让被调查者用经济价值衡量各种环境影响类型或损害的重要性。显然,如上得到的权重因子是基于被调查者的主观价值判断,也受到当地环境关注重点和环境目标的影响,未必适合于其他国家,因此权重因子也有本地化的必要性。
个人分类: LCA/LCM|9428 次阅读|2 个评论
中国LCA数据库的开发(一)新的起点
热度 2 wanght 2011-8-23 15:09
中国LCA数据库的开发(一)新的起点
毋庸置疑,本地化的LCA数据库是开展LCA研究和应用的关键! 在2009年的第二届中国生命周期管理会议(CLCM)上,我们对参会代表进行调查,询问“你认为在中国开展LCA工作最大的困难是什么?”。毫无悬念地,“缺乏中国本地化LCA数据库”夺得了第一绊脚石殊荣。 (详见会议开幕式的PPT报告: http://www.iscp.org.cn/conference/clcm2009cn/agenda.html ) 在过去的几年里,开发中国本地化的LCA数据库 是我们最重要的任务之一。 我们的目标是建立一个基于生产过程的(process-based,而不是基于投入产出表的)、代表 中国 市场平均水平的 LCA数据库,并已经逐步取得了一系列阶段性成果: 1) 2007年,因承担十一五科技支撑计划“化工与建材关键产品生态设计技术开发”课题,我们正式启动了数据库开发的工作。 2)2009年,因“中国电力生命周期模型研究”,获得了联合国环境署和国际环境毒理与化学学会(UNEP/SETAC)评选的发展中国家LCA研究奖第一名( http://lcinitiative.unep.fr/default.asp?site=lcinitpage_id=CA7FEE7C-1A77-4532-B2E5-24C5637F3197 )。我们之后的数据库和模型就是从这个电力模型扩展而来的。 3)2010年9月19日,我们开发的“中国生命周期参考数据库”(0.1版)正式公开发布,含几十种大宗能源、原材料和运输的数据。此数据库可随亿科环境科技公司的eBalance软件免费下载( http://www.itke.com.cn/cn/product/?CategoryID=1 ), 并不断扩展和更新 。 截止2011年5月,0.4版已包含近300种中国基础产品的LCA数据。 这应该是第一个、目前也可能仍然是唯一一个可以公开获得的综合性中国本地化数据库 。在这过去的一年里,我们还完善了数据库收集指南,提出了基于不确定度分析和敏感度分析的数据质量评估和控制方法,开发了相应的软件功能,极大地提高了数据库工作的质量和效率。 4)2011年8月,四川大学与亿科环境科技公司签署了为期四年的数据库合作开发协议,数据库正式定名为“ 中国生命周期基础数据库(CLCD) ”,2011年年底将推出内容更丰富的新数据库版本。CLCD数据库将不断扩展和更新,尽可能地包含中国主要的能源、大宗原材料和运输数据,预期达到1000个单元过程以上(对比Ecoinvent数据库,它包含4000多个单元过程,但其中有许多终端产品,不在CLCD的目标范围内)。同时,我们将积极开展与行业研究机构的合作,推动各行业的原材料与零部件数据库的建设,促进LCA在中国的研究与应用。 站在新的起点上,计划写几篇介绍CLCD数据库开发的博文,总结CLCD开发的思路、方法和特点,讨论CLCD的技术路线和发展方向,供CLCD数据库用户和国内LCA研究者参考。
个人分类: LCA/LCM|10430 次阅读|5 个评论
[转载]Local Chocolate, for Local Consumption,全球化内涵本地化
yue 2010-9-4 19:58
前言 生活水平的提高,全球化是必由之路。 生活水平要继续提高,本地化是必由之路。 而这种全球化本身内含本地化,而本地化也内含全球化。 现阶段,破坏环境是提高生活水平的必由之路。 但是要继续提高生活水平,甚至要保持现有的,甚至是基本的较低的生活水平,即保证人类的生存而不是享乐,环境友好也是必由之路。 发展经济的目的不是为了培养税源,即不是为了政府发财。也不是为了国际政治斗争中获胜,即不是为了最终战胜资本主义。 http://www.nytimes.com/2010/09/03/business/energy-environment/03iht-rbogchoc.html BERGL, AUSTRIA In 1996, Josef Zotters bakery面包 business in Graz格拉茨(奥地利东南部城市), Austria, was floundering挣扎. Facing bankruptcy, he decided to close shop and go back to his roots, a village named Bergl in the Feldbach 费尔德巴赫 district of Styria 施泰尔马克州. There, with 2 of his 40 former employees, he set up a tiny chocolate factory in a converted加以改造 cowshed牛棚 on the farm where he had grown up. His plan was to build a microbusiness, buying fair trade chocolate beans from smallholder小农 producer cooperatives合作者 in Nicaragua尼加拉瓜 and Brazil for the small-scale小规模 production of chocolate confectionery糖果 using local produce本地农产品, for local consumption. Turning out bars一块巧克力 with flavors like apricot杏仁 and sheeps milk, he built a following顾客,拥护者 among customers who liked the concept of Austrian specialty chocolate made in an environmentally conscious意识 way . Today, the factory has grown to cover面积达到 more than 5,500 square meters, or 60,000 square feet, from its original 200 square meters. The company, Zotter Schokoladen Manufaktur(manufactor) , employs 112 people producing as many as 50,000 to 80,000 bars a day in a range of more than 200 classical正统 and exotic异域 flavors. Among the odder奇特 ingredients成分: Fish; soy; green tea; aa berry; and ketchup番茄酱 and peanut butter a tongue-in-cheek celebration of American taste, for President Barack Obama s election victory. Sales have grown by word of mouth.口耳相传 We dont advertise whatsoever , Mr. Zotter said in an interview last month. The company organizes factory tours , however, that bring about 150,000 visitors a year to taste and smell and also to sit on cocoa bean bags in the on-site Cocoa Cinema, where they can watch presentations on the brands history and ecological principles . Other attractions include a Drink Chocolate Online room where a small cable conveyor system, like a miniature ski-lift缆索吊椅, trundles小车轮 bars of chocolate around the room, waiting for visitors to pick them off and turn them into cocoa drinks at an adjoining hot chocolate bar. A recent visitor found crowds of children drinking from cocoa fountains喷泉 at the entrance to the factory while their parents cut chocolate chunks大块 from brimming注满 samplers. But behind this playful, almost whimsical异想天开, presentation lies a strong commitment to sustainable production and equitable trading relations with the companys suppliers. The companys chocolate beans have been certified as fair trade products since 2004, meaning that it buys directly from the producers, offering them a higher price by cutting out middlemen. Mr. Zotter said he traveled regularly to Nicaragua and Brazil to meet with the producers, for whom he has financed资助 the purchase of machinery and the construction of storage space. I know how much they earn, and how much of their salary such equipment represents, he said. Residues残渣 from grinding磨,榨 the beans are fed into a biomass生物质 converter转换器 to produce heat, power能源 and fertilizer肥料. Between the biomass plant and solar panels太阳能板, 60 percent of the energy required by the factory is produced on the site 现场. We aim to reach full energy autarchy自给 in the next 10 years, Mr. Zotter said. Since 2006, the factorys output has been certified organic有机农业. Mr. Zotter uses dairy products from organic farmers in the mountains of Tyrol and specialty organic products, like seeds, fruit and nuts, from local farms. I want to use as many local specialties, and specialists, as possible. Steiermark needs the jobs, Mr. Zotter said, using the German name for Styria. Mr. Zotter has also established an organic canteen 饭馆on the factory site for his employees so they get used to习惯于 quality, he said. Also, I want them to work not just for money, but in a place they feel good in. Other environmental gestures include using water from local springs only , which is then recycled for cleaning; and using environmentally friendly packaging, without glossy油腻 coatings. You can make changes by paying attention to the smallest details of everyday life, he said. Applying the same principles to his private life, he says he has driven an electric car for the past 15 years and powers his home with a domestic solar/ biomass generator that produces more energy than he needs. My home energy production is really efficient, he said. I actually produce too much, so I wind up reselling it. ( COCA TO COCOA ) In an extension of his fair-trade principles, Mr. Zotter is also involved in several social proje cts, including one in Colombia that aims to wean戒除 coca可卡因 growers onto cocoa as a substitute crop, and his product line includes fund-raising chocolates, like the Zuki bar, a flavorsome blend of aa, mango芒果 and brazil nuts鲍鱼果 . The company says it donates 30 percent of Zuki bar sales to an aid project for Calcutta加尔各答 street children. Mr. Zotter says he is not interested in developing a global presence or selling through large distribution chains. Franchising特许经销权 has no place in his strategy, and faster growth is not an object. 欲仁而得仁,得其所哉。目标是自我实现,这一目标已经达到了。 Ive reached my ideal size, he said. Plus另外, I dont think we need yet another global brand品牌. The world needs a completely new approach to making the economy work. I find it so frustrating to see the same products in every corner of the globe. The world is changing, he added. There is a return to simplicity. Greed is over. 贪婪还没有开始,人类的贪婪还在后面,入涉大水,其无津涯。 参考 http://www.sciencenet.cn/blog/user_content.aspx?id=351646 经济全球化的本质,全球化内涵本地化
个人分类: 科幻 对科学的困惑|2945 次阅读|0 个评论

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-6-16 01:36

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部