10000bp FASTA 1000bp 10000bp 3' i = 1 remainder = seq.window_search(10000, 9000) do subseq puts subseq.to_fasta("segment #{i}", 60) i += 1 puts remain

Size: px
Start display at page:

Download "10000bp FASTA 1000bp 10000bp 3' i = 1 remainder = seq.window_search(10000, 9000) do subseq puts subseq.to_fasta("segment #{i}", 60) i += 1 puts remain"

Transcription

1 BioRuby (Bio::Sequence ) atgcatgcaaaa codontable.rb seq = Bio::Sequence::NA.new("atgcatgcaaaa") puts seq puts seq.complement puts seq.subseq(3,8) p seq.gc_percent p seq.composition puts seq.translate puts seq.translate(2) puts seq.translate(1,11) p seq.translate.codes p seq.translate.names p seq.translate.composition p seq.translate.molecular_weight puts seq.complement.translate # # (Sequence::NA ) # 3 8 # GC (Float) # (Hash) # (Sequence::AA ) # # 11 # (Array) # (Array) # (Hash) # (Float) # Bio::Sequence::NA Bio::Sequence::AA Bio::Sequence Bio::Sequence Ruby String String subseq(from,to) String [] Ruby subseq 0 base 1 base from, to 0 nil window_search(window_size, step_size) Bio::Sequence::NA Bio::Sequence::AA GC% seq.window_search(100) do subseq puts subseq.gc 15 seq.window_search(15, 3) do subseq puts subseq.translate

2 10000bp FASTA 1000bp 10000bp 3' i = 1 remainder = seq.window_search(10000, 9000) do subseq puts subseq.to_fasta("segment #{i}", 60) i += 1 puts remainder.to_fasta("segment #{i}", 60) codon_usage = Hash.new(0) seq.window_search(3, 3) do subseq codon_usage[subseq] += 1 10 seq.window_search(10, 10) do subseq puts subseq.molecular_weight Bio::Sequence::NA input_seq = ARGF.read # my_naseq = Bio::Sequence::NA.new(input_seq) my_aaseq = my_naseq.translate puts my_aaseq na2aa.rb gtggcgatctttccgaaagcgatgactggagcgaagaaccaaagcagtgacatttgtctg atgccgcacgtaggcctgataagacgcggacagcgtcgcatcaggcatcttgtgcaaatg tcggatgcggcgtga my_naseq.txt %./na2aa.rb my_naseq.txt VAIFPKAMTGAKNQSSDICLMPHVGLIRRGQRRIRHLVQMSDAA*

3 % ruby -r bio -e 'p Bio::Sequence::NA.new($<.read).translate' my_naseq.txt GenBank (Bio::GenBank ) GenBank ftp://ftp.ncbi.nih.gov/genbank/.seq gb2fasta ID FASTA gets DELIMITER GenBank GenBank // RS (record separator) while entry = gets(bio::genbank::delimiter) gb = Bio::GenBank.new(entry) # GenBank print ">#{gb.accession} " puts gb.definition puts gb.naseq # ACCESSION # DEFINITION # Sequence::NA Bio::FlatFile ff = Bio::FlatFile.new(Bio::GenBank, ARGF) ff.each_entry do gb definition = "#{gb.accession} #{gb.definition}" puts gb.naseq.to_fasta(definition, 60) FASTA ff = Bio::FlatFile.new(Bio::FastaFormat, ARGF) ff.each_entry do f puts "definition : " + f.definition puts "nalen : " + f.nalen.to_s puts "naseq : " + f.naseq Bio::FlatFile.new BioRuby Bio::DB open

4 ff = Bio::GenBank.open("gbvrl1.seq") ff.each_entry do gb definition = "#{gb.accession} #{gb.definition}" puts gb.naseq.to_fasta(definition, 60) GenBank FEATURES ff = Bio::FlatFile.new(Bio::GenBank, ARGF) # GenBank ff.each_entry do gb # ACCESSION puts "# #{gb.accession} - #{gb.organism}" gb.features.each do feature position = feature.position hash = feature.assoc # FEATURES # # /translation= next unless hash['translation'] # gene_info = [ hash['gene'], hash['product'], hash['note'], hash['function'] ].compact.join(', ') # puts ">NA splicing('#{position}') : #{gene_info}" puts gb.naseq.splicing(position) # puts ">AA translated by splicing('#{position}').translate" puts gb.naseq.splicing(position).translate # /translation= puts ">AA original translation" puts hash['translation'] assoc Feature qualifier qualifier 1 feature splicing GenBank position exon BioRuby splicing GenBank position Bio::Locations position Bio::Locations bio/location.rb GenBank feature position

5 naseq.splicing('join( ,complement( ), ') Locations locs = Bio::Locations.new('join(( ) ,1..855)') naseq.splicing(locs) Bio::Sequence::AA splicing aaseq.splicing(' ') GenBank BioRuby GenBank Bio::FlatFile Bio::FlatFile.new BioRuby (Bio::GenBank Bio::KEGG::GENES ) ff = Bio::FlatFile.new(Bio::, ARGF) FlatFile ff = Bio::FlatFile.auto(ARGF) ff = Bio::FlatFile.auto(ARGF) ff.each_entry do entry p entry.entry_id # ID p entry.definition # p entry.seq # entry_id ID definition reference organism seq naseq aaseq bio/db.rb references Bio::Reference Array reference Bio::Reference

6 FASTA Bio::Fasta FASTA query.pep FASTA ssearch FASTA fasta34 FASTA target.pep FASTA query.pep # FASTA ssearch factory = Bio::Fasta.local('fasta34', ARGV.pop) # FastaFormat ff = Bio::FlatFile.new(Bio::FastaFormat, ARGF) # FastaFormat ff.each do entry # '>' $stderr.puts "Searching... " + entry.definition # FASTA Fasta::Report report = factory.query(entry) # report.each do hit # evalue if hit.evalue < # evalue print "#{hit.query_id} : evalue #{hit.evalue} t#{hit.target_id} at " p hit.lap_at f_search.rb %./f_search.rb query.pep target.pep > f_search.out factory FASTA Fasta query seq = ">test seq nyqvleeigrgsfgsvrkvihiptkkllvrkdikyghmnske" seq.fasta(factory) factory fasta FASTA FASTA ktup ktup 1 10 factory = Bio::Fasta.local('fasta34', 'target.pep', '-b 10') factory.ktup = 1

7 Bio::Fasta#query Bio::Fasta::Report Report FASTA report.each do hit puts hit.evalue # E-value puts hit.sw # Smith-Waterman (*) puts hit.identity # % identity puts hit.overlap # puts hit.query_id # ID puts hit.query_def # puts hit.query_len # puts hit.query_seq # puts hit.target_id # ID puts hit.target_def # puts hit.target_len # puts hit.target_seq # puts hit.query_start # puts hit.query_ # puts hit.target_start # puts hit.target_ # puts hit.lap_at # Bio::Blast::Report FASTA Bio::Fasta::Report fasta report = factory.query(entry) puts factory.output query factory output GenomeNet (fasta.genome.jp) Bio::Fasta.remote Bio::Fasta.local GenomeNet nr-aa, genes, vgenes.pep, swissprot, swissprot-upd, pir, prf, pdbstr nr-nt, genbank-nonst, gbnonst-upd, dbest, dbgss, htgs, dbsts, embl-nonst, embnonst-upd, genes-nt, genome, vgenes.nuc program 'fasta' program 'tfasta' program 'fasta' program = 'fasta' database = 'genes'

8 factory = Bio::Fasta.remote(program, database) factory.query BLAST Bio::Blast BLAST GenomeNet (blast.genome.jp) Bio::Fasta API Bio::Blast f_search.rb # BLAST factory = Bio::Blast.local('blastp', ARGV.pop) GenomeNet Bio::Blast.remote FASTA program program 'blastp' program 'tblastn' program 'blastx' program 'blastn' Bio::Blast -m 8 -m 7 XML Ruby XMLParser REXML BLAST XML XMLParser, REXML Bio::Fasta::Report Bio::Blast::Report Hit BLAST bit_score midline report.each do hit puts hit.bit_score # bit (*) puts hit.query_seq # puts hit.midline # midline (*) puts hit.target_seq # puts hit.evalue puts hit.identity puts hit.overlap puts hit.query_id puts hit.query_def puts hit.query_len puts hit.target_id puts hit.target_def puts hit.target_len puts hit.query_start puts hit.query_ puts hit.target_start puts hit.target_ puts hit.lap_at # E-value # % identity # # ID # # # ID # # # # # # #

9 Hsp Hit Hit Hsp Hsp blastpgp Iteration Bio::Blast::Report Bio::Blast::Report::Iteration Array Bio::Blast::Report::Hits Array Bio::Blast::Report::Hsp Array BLAST bio/appl/blast/*.rb BLAST BLAST Bio::Blast Bio::Blast::Report Bio::Blast.reports blastall -m 7 XML # XML Bio::Blast::Report Bio::Blast.reports(ARGF) do report puts "Hits for " + report.query_def + " against " + report.db report.each do hit print hit.target_id, " t", hit.evalue, " n" if hit.evalue < hits_under_0.001.rb %./hits_under_0.001.rb *.xml BLAST *.xml Blast OS XML XML Blast D -m Blast NCBI BioRuby GenomeNet CGI -m 8 BioRuby blast query Bio::Blast::Report.new exec_ Bio::Blast private factory = Bio::Blast.remote(program, db, option, ' ') BioRuby

10 PubMed (Bio::PubMed ) NCBI PubMed ARGV.each do id entry = Bio::PubMed.query(id) # PubMed medline = Bio::MEDLINE.new(entry) # Bio::MEDLINE reference = medline.reference # Bio::Reference puts reference.bibtex # BibTeX pmfetch.rb %./pmfetch.rb PubMed ID (PMID) NCBI MEDLINE BibTeX # keywords = ARGV.join(' ') # PubMed entries = Bio::PubMed.search(keywords) entries.each do entry medline = Bio::MEDLINE.new(entry) # Bio::MEDLINE reference = medline.reference # Bio::Reference puts reference.bibtex # BibTeX pmsearch.rb %./pmsearch.rb genome bioinformatics PubMed BibTeX NCBI E-Utils esearch, efetch keywords = ARGV.join(' ') options = { 'maxdate' => '2003/05/31', 'retmax' => 1000, }

11 entries = Bio::PubMed.esearch(keywords, options) Bio::PubMed.efetch(entries).each do entry medline = Bio::MEDLINE.new(entry) reference = medline.reference puts reference.bibtex pmsearch.rb E-Utils E-Utils bibtex BibTeX bibitem nature nar Bio::Reference REFERENCE BibTeX BibTeX BibTeX TeX %./pmfetch.rb >> genoinfo.bib %./pmsearch.rb genome bioinformatics >> genoinfo.bib genoinfo.bib documentclass{jarticle} begin{document} bibliographystyle{plain} KEGG ~ cite{pmid: } bibliography{genoinfo} {document} hoge.tex % platex hoge % bibtex hoge # genoinfo.bib % platex hoge # % platex hoge # hoge.dvi bibitem.bib Reference#bibitem pmfetch.rb pmsearch.rb puts reference.bibtex puts reference.bibitem

12 documentclass{jarticle} begin{document} KEGG ~ cite{pmid: } begin{thebibliography}{00} bibitem{pmid: } Kanehisa, M., Goto, S. KEGG: kyoto encyclopedia of genes and genomes., { em Nucleic Acids Res}, 28(1):27--30, {thebibliography} {document} begin{thebibliography} hoge.tex % platex hoge # % platex hoge # BioRuby BioRuby samples/ to be written... OBDA OBDA (Open Bio Database Access) 2002 Arizona Cape Town BioHackathon BioPerl, BioJava, BioPython, BioRuby BioRegistry (Directory) BioFlat 2 BDB BioFetch HTTP BioSQL MySQL PostgreSQL schema <URL: spec CVS cvs.open-bio.org obf-common/ BioRegistry ~/.bioinformatics/seqdatabase.ini /etc/bioinformatics/seqdatabase.ini BioRuby /etc/bioinformatics/

13 ~/.bioinformatics/ open-bio.org seqdatabase.ini bioruby stanza [ ] protocol= location= BioRuby location MySQL protocol index-flat index-berkeleydb biofetch biosql bsane-corba xembl BioRuby index-flat, indexberkleydb, biofetch biosql BioRegistry reg = Bio::Registry.new # serv = reg.get_database('genbank') # ID entry = serv.get_by_id('aa2cg') serv [genbank] protocol Bio::SQL Bio::Fetch nil OBDA get_by_id BioFetch BioSQL BioFlat BioFlat index-flat Berkeley DB (bdb) indexberkeleydb bioruby bioflat % bioflat --makeindex [--format ] BioRuby % bioflat ID

14 GenBank gbbct*.seq % bioflat --makeindex my_bctdb --format GenBank gbbct*.seq % bioflat my_bctdb A16STM262 Ruby bdb Berkeley DB % bioflat --makeindex-bdb [--format ] makeindex bdb BioFetch BioFetch CGI CGI HTTP ID BioRuby BioHackathon GenomeNet DBGET BioFetch bioruby.org BioRuby sample/ BioFetch BioRuby EBI BioFetch BioRuby biofetch % biofetch db_name entry_id 3. Bio::Fetch serv = Bio::Fetch.new(server_url) entry = serv.fetch(db_name, entry_id) 4. BioRegistry Bio::Fetch reg = Bio::Registry.new serv = reg.get_database('genbank') entry = serv.get_by_id('aa2cg') BioRegistry seqdatabase.ini [genbank] protocol=biofetch location= biodbname=genbank BioRegistry Bio::Fetch URL BioFetch Bio::KEGG::GENES, Bio::AAindex1 BioFetch KEGG GENES Halobacterium

15 (VNG1467G) AAindex α (BURA740101) 15 entry = Bio::Fetch.query('hal', 'VNG1467G') aaseq = Bio::KEGG::GENES.new(entry).aaseq entry = Bio::Fetch.query('aax1', 'BURA740101') helix = Bio::AAindex1.new(entry).index position = 1 win_size = 15 aaseq.window_search(win_size) do subseq score = subseq.total(helix) puts [ position, score ].join(" t") position += 1 Bio::Fetch.query bioruby.org BioFetch KEGG/GENES hal AAindex aax1 BioFetch query BioSQL to be written... KEGG API KEGG_API.rd.ja <URL: APPENDIX to be written...

BioRuby Ruby Bioinfomatics Blast BioPerl, BioJava, BIoPython Ruby

BioRuby Ruby Bioinfomatics Blast BioPerl, BioJava, BIoPython Ruby BioRuby, BioRuby Ruby Bioinfomatics Blast BioPerl, BioJava, BIoPython Ruby Open Bio* O B F -- Open Bio Foundation BioRuby Ensembl BioCaml BioPerl OmniGene BioLisp BioPython GMOD BioConductor BioJava Apollo

More information

BioRuby の使い方

BioRuby の使い方 BioRuby BioRuby Ruby Ruby Perl Ruby http://www.ruby-lang.org/ BioRuby Ruby BioRuby Ruby Ruby Mac OS X UNIX Windows ActiveScriptRuby http://jp.rubyist.net/magazine/?0002-firstprogramming http://jp.rubyist.net/magazine/?firststepruby

More information

Open Bio* O B F -- Open Bio Foundation BioRuby BioPerl BioPython BioJava BioDAS BioMOBY BioPipe EMBOSS Ensembl OmniGene GMOD GBrowse Apollo OBDA BioCa

Open Bio* O B F -- Open Bio Foundation BioRuby BioPerl BioPython BioJava BioDAS BioMOBY BioPipe EMBOSS Ensembl OmniGene GMOD GBrowse Apollo OBDA BioCa BioRuby 片山!俊明! 京大化研バイオインフォマティクスセンター 2003/1/28 infobiologist 第二回研究会 ۆ 伝研 Open Bio* O B F -- Open Bio Foundation BioRuby BioPerl BioPython BioJava BioDAS BioMOBY BioPipe EMBOSS Ensembl OmniGene

More information

20110325-ob14-ktym-revised.key

20110325-ob14-ktym-revised.key BioRuby 10 http://bioruby.org/ 46th SIG-MBI / 14th Open Bio 2011/3/25-26 @ JAIST 2000 BioPerl KEGG, GenBank Perl BioPerl BioPerl Ruby BioRuby 2000 2001 BOSC - Bioinformatics Open Source

More information

class Cpd MW = { 'C'=>12.011, 'H'=>1.00794, 'N'=>14.00674, 'O' => 15.9994, 'P' => 30.973762 } def initialize @comp = Hash.new attr_accessor :name, :definition, :formula # formula def composition @formula.scan(/([a-z]+)(\d+)/)

More information

未踏成果報告会-fix.key

未踏成果報告会-fix.key BioRuby/ChemRuby http://www.tmd.ac.jp/artsci/biol/textbook/celltop.htm 350 280 210 140 2000 / 1 / 27 70 0 1995 96 97 98 99 2000 01 02 03 04 05 RefSeq PDB PubMed PubChem GenPept EMBL UniProt GenBank

More information

giw2005-bioruby-bof.key

giw2005-bioruby-bof.key 2005 IPA Ruby ::: BioRuby + ChemRuby ::: http://bioruby.org/ + BioRuby:, + ChemRuby: http://bioruby.org/ O B F (http://open-bio.org) BioPerl, BioPython, BioJava,.. (http://open-bio.jp)

More information

ngoto-biotree-public.ppt

ngoto-biotree-public.ppt BioRuby 200732 2005 2005 : 719 : GenBank, EMBL, DDBJ, PDB, KEGG, Galperin, M.Y. (2005) The Molecular Biology Database Collection: 2005 update. Nucleic Acids Research, 33: D5-D24. : 129448 : BLAST, FASTA,

More information

<URL: KEGG API Ruby, Perl, Python, Java KEGG API SOAP WSDL Ruby Ruby SOAP Ruby SOAP4R, devel-logger, http-

<URL:  KEGG API Ruby, Perl, Python, Java KEGG API SOAP WSDL Ruby Ruby SOAP Ruby SOAP4R, devel-logger, http- KEGG API KEGG API KEGG KEGG KEGG API KEGG API Ruby SOAP WSDL Perl, Python, Java KEGG API KEGG API Ruby Perl Python Java KEGG API WSDL SSDBRelation, ArrayOfSSDBRelation MotifResult, ArrayOfMotifResult Definition,

More information

KNOB? KNOB KNOB

KNOB? KNOB KNOB KNOB Itoshi NIKAIDO itoshi@saitama-med.ac.jp KNOB? KNOB KNOB Bioinformatics? データタイプがいっぱい EMBOSS = 160 aaindexextract,abiview,acdc,acdpretty,acdtable,acdtrace,acdvalid,antigenic,backtranseq,ba nana,biosed,btwisted,cai,chaos,charge,checktrans,chips,cirdna,codcmp,coderet,compseq,

More information

PowerPoint Presentation

PowerPoint Presentation DNA 87 ( ) Nucleic Acids ResearchDB RNA 29 94 58 29 18 43 153 : 511 Bio DB Catalog (DBCAT) http://www.infobiogen.fr/services/dbcat/ 2 GenBank MB SRS) DAS) 3 4 5 A A A 6 OGSA-DAI 7 9 DB Medical Encyclopedia

More information

KNOB Bio KNOPPIX

KNOB Bio KNOPPIX KNOPPIX for Bio 1CD Linux Itoshi NIKAIDO KNOB Bio KNOPPIX Knoppix for Bio KNOPPIX JP Itoshi NIKAIDO 2004/01/29 1.1.0 1.3.1 bio OS Mac OS X Xcode/fink Windows Cygwin Linux

More information

BioRuby入門

BioRuby入門 BioRuby 入門 後藤直久 2005 年 7 月 9 日 BioRuby とは? バイオインフォマティクスに必要な機能や環境をオブジェクト指向スクリプト言語 Ruby を用いて統合的に実装したライブラリ http://bioruby.org bioruby.org/ バイオインフォマティクス (Bioinformatics) バイオ (bio) : 生物学 インフォマティクス (informatics):

More information

KNOB Knoppix for Bio Itoshi NIKAIDO

KNOB Knoppix for Bio Itoshi NIKAIDO KNOB Knoppix for Bio Itoshi NIKAIDO Linux Grasp the KNOB! grasp 1, (grip). 2,, (understand). [ 2 ] What s KNOB CD Linux Bioinformatics KNOB Why KNOB? Bioinformatics What

More information

AJACS18_ ppt

AJACS18_ ppt 1, 1, 1, 1, 1, 1,2, 1,2, 1 1 DDBJ 2 AJACS3 2010 6 414:20-15:20 2231 DDBJ DDBJ DDBJ DDBJ NCBI (GenBank) DDBJ EBI (EMBL-Bank) GEO DDBJ Omics ARchive(DOR) ArrayExpress DTA (DDBJ Trace Archive) DRA (DDBJ

More information

> >TPIS_ECOLI [P04790] "Triosephosphate isomerase (EC 5.3.1.1) (TIM) MRHPLVMGNWKLNGSRHMVHELVSNLRKELAGVAGCAVAIAPPEMYIDMAKREAEGSHIM LGAQNVDLNLSGAFTGETSA

> >TPIS_ECOLI [P04790] Triosephosphate isomerase (EC 5.3.1.1) (TIM) MRHPLVMGNWKLNGSRHMVHELVSNLRKELAGVAGCAVAIAPPEMYIDMAKREAEGSHIM LGAQNVDLNLSGAFTGETSA BLAST cd cp r /mandara/lecture/takawaba/blast. cd BLAST WEB http://isw3.naist.jp/is/kawabata-lab/lecdoc/bioinfo05/ /mandara/lecture/takawaba/bin BLAST./SETUP.cshrc.cshrc.orig_before_bioinfo06.cshrc bash

More information

NCBI BLAST チュートリアル このチュートリアルでは NCBI サイトでの BLAST による相同性検索の方法について 一般的な使い方を紹介しています はじめに. BLAST とは まずはじめに 簡単に BLAST について紹介することにしましょう BLAST は Basic Local Alignment Search Tool の略で ペアワイズの局所的なアライメント / 相同性検索 (

More information

スライド 1

スライド 1 BioRuby 入 門 はじめてのプログラム 言 語 Naohisa Goto / 後 藤 直 久 Genome Information Research Center, Research Institute for Microbial Diseases, Osaka Univ. 大 阪 大 学 微 生 物 病 研 究 所 附 属 遺 伝 情 報 実 験 センター Email: ngoto@gen-info.osaka-u.ac.jp

More information

Sequencher 4.9 Confidence score Clustal Clustal ClustalW Sequencher ClustalW Windows Macintosh motif confidence Sequencher V4.9 Trim Ends Without Prev

Sequencher 4.9 Confidence score Clustal Clustal ClustalW Sequencher ClustalW Windows Macintosh motif confidence Sequencher V4.9 Trim Ends Without Prev 2009 Gene Codes Corporation Gene Codes Corporation 775 Technology Drive, Ann Arbor, MI 48108 USA 1.800.497.4939 (USA) +1.734.769.7249 (elsewhere) +1.734.769.7074 (fax) www.genecodes.com info@genecodes.com

More information

橡PNE記事補足

橡PNE記事補足 UNIX --- MacOS X Linux --- MacOS X Darwin BSD UNIX Aqua Mac GUI graphical user interface MacOS UNIX IT WEB UNIX Mac Windows MacOS X UNIX OS 10.1.2 UNIX 1 2 MacOS9 Windows98 (Me) Windows 2000 (NT) Windows

More information

Bioinformatics2

Bioinformatics2 バイオインフォマティクス配列データ解析 2 藤 博幸 データベース検索 (1) ブラウザで NCBI を検索 (2)NCBI で配列データの取得 (3)NCBI で BLAST 検索 ブラウザで NCBI を検索 ブラウザで NCBI を検索 クリック ブラウザで NCBI を検索 NCBI トップページ National Center for Biotechnology Information 分

More information

UnixText2.pptx

UnixText2.pptx Unix Unix! grep! sed! sort! cut! join! awk! (grep)! grep ' ' [...]! grep 'GO' 1433B_HUMAN.sprot!! 1433B_HUMAN.sprot GO grep '^FT' 1433B_HUMAN.sprot!! 1433B_HUMAN.sprot FT! grep -v! grep -i! grep -w!!!

More information

KEGG.ppt

KEGG.ppt 1 2 3 4 KEGG: Kyoto Encyclopedia of Genes and Genomes http://www.genome.jp/kegg/kegg2.html http://www.genome.jp/kegg/kegg_ja.html 5 KEGG PATHWAY 生体内(外)の分子間ネットワーク図 代謝系 12カテゴリ 中間代謝 二次代謝 薬の 代謝 全体像 制御系 20カテゴリ

More information

国立遺伝学研究所におけるDNAデータバンク:DDBJ

国立遺伝学研究所におけるDNAデータバンク:DDBJ DNA DDBJ Introduction of the DNA Data Bank of Japan (DDBJ) DNA DDBJ DNA Data Bank of Japan 1986 DNA DDBJ GenBankEMBL 3 1984 19952001 4DDBJDDBJ DDBJ VPP5000 HPCDDBJ DNA DDBJ SE DDBJ Abstract The DNA Data

More information

国際塩基配列データベース n DNA のデータベース GenBank ( アメリカ :Na,onal Center for Biotechnology Informa,on, NCBI が運営 ) EMBL ( ヨーロッパ : 欧州生命情報学研究所が運営 ) DDBJ ( 日本 : 国立遺伝研内の日

国際塩基配列データベース n DNA のデータベース GenBank ( アメリカ :Na,onal Center for Biotechnology Informa,on, NCBI が運営 ) EMBL ( ヨーロッパ : 欧州生命情報学研究所が運営 ) DDBJ ( 日本 : 国立遺伝研内の日 生物情報工学 BioInforma*cs 3 遺伝子データベース 16/06/09 1 国際塩基配列データベース n DNA のデータベース GenBank ( アメリカ :Na,onal Center for Biotechnology Informa,on, NCBI が運営 ) EMBL ( ヨーロッパ : 欧州生命情報学研究所が運営 ) DDBJ ( 日本 : 国立遺伝研内の日本 DNA データバンクが運営

More information

kast-knob.rd

kast-knob.rd KNOB ~ ~ D. 2005 11 29 ( ) 13:00~17:00 KNOB Project KNOB2.0.0 WindowsPC EMBOSS UNIX/Linux KAST 3 1. 2. 3. Linux sirna Unix Linux PPAR PPAR DNA / PPARG PPARG2 PPARG2 RT- PCR(qPCR) PPARG2 sirna EMBOSS EMBOSS

More information

_02_3.ppt

_02_3.ppt XML DB Oracle Corporation Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 2 Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 3 RDB-XML RDB XML Oracle Corporation 4 XML RDB [Oracle] Extract ExtractValue

More information

3360 druby Web Who is translating it? http://dx.doi.org/10.1007/s10766-008-0086-1 $32.00 International Journal of PARALLEL PROGRAMING Must buy! http://dx.doi.org/10.1007/s10766-008-0086-1 toruby LT Linux

More information

<4D F736F F F696E74202D F90B695A8947A97F189F090CD8AEE91625F3189F196DA5F8E9197BF2E >

<4D F736F F F696E74202D F90B695A8947A97F189F090CD8AEE91625F3189F196DA5F8E9197BF2E > 1 2 kiso1 3 4 5 6 7 8 9 10 11 12 AP009356 と入力 National Center for Biotechnology Information http://www.ncbi.nlm.nih.gov/ 13 All Databases データベースの統合検索システム主なデータベースは,PubMed ヌクレオチドシークエンスデータベース タンパク質シークエンスデータベース

More information

DDBJ Ei-ji Nakama nakama at com-one.com COM-ONE Ltd. DDBJ p. 1

DDBJ Ei-ji Nakama nakama at com-one.com COM-ONE Ltd. DDBJ p. 1 DDBJ - 2007-06-18 - Ei-ji Nakama nakama at com-one.com COM-ONE Ltd. DDBJ p. 1 R XML R[6] XML XML[1]. R XML[1] libxml(http://xmlsoft.org/). R XML, libxml. XML-1.9.0 encoding. Omegahat a, CRAN. a http://www.omegahat.org/

More information

BLAST クイックスタート このミニコースでは 配列相同性検索プログラムである BLAST ファミリについて実用的な紹介をしていきます その課題は単純な探索から ある特別な目的の探索を BLAST の創造的な使い方で実現するといった幅の広いものになっています 課題.1 blastn の利用 課題.1-1 プライマーでの増幅領域の特定 下に示したプライマーを用いることで増幅できる GenBank に登録されているヒトゲノムの配列を

More information

untitled

untitled Biopython Python Yasushi MASUDA ymasuda at cubelab.com Python Open-Bio BOF 2004 at GIW2004 (Perl Ruby ) 1990 C/C++ ( ) Python Home http://python.org/ PyJUG (Japanese UG) http://python.jp/ def xpdlist(fname):

More information

2. 2 (LAN) Web 7 2 DBMS Java Applet 2.1 Java RDBMS Java 1 Lisp S S Common Lisp Java DBMS 2.2 DBMS RDBMS(Oracle) Java BLOB(Binary Large OBject) RDBMS R

2. 2 (LAN) Web 7 2 DBMS Java Applet 2.1 Java RDBMS Java 1 Lisp S S Common Lisp Java DBMS 2.2 DBMS RDBMS(Oracle) Java BLOB(Binary Large OBject) RDBMS R 1 Lisp - - 2-4-3 ( ) Common Lisp 1. Common Lisp DBMS Common Lisp OODBMS 2. CORBA 3. Java Applet 1. 2. 1 1.1 () () AD [1] 1.2 2. 2 (LAN) Web 7 2 DBMS Java Applet 2.1 Java RDBMS Java 1 Lisp S S Common Lisp

More information

3 XML SPring-8 SPring-8 DNA DNA 4 XML BLAST)

3 XML SPring-8 SPring-8 DNA DNA 4 XML BLAST) BioGrid E-mail: matsuda@ist.osaka-u.ac.jp 500 2 3 XML SPring-8 SPring-8 DNA DNA 4 XML BLAST) 5 (flat file) XML DB XML DB DDBJ 6 DNA (SWISS-PROT) (PDB) XML 7 Common Format SWISS-PROT PIR PDB entry entry

More information

untitled

untitled 2009. 10 106-0044 2 17 12 TEL : 0120-551-051 FAX : 03-3505-6283 E-mail : endnote@usaco.co.jp http://www.usaco.co.jp/endnote/ EndNote X3 Windows / 2009. 7 1... 1 2... 2 1.... 2 2.... 5 3 EndNote... 6 1.

More information

r1.dvi

r1.dvi Ruby 2009.9.7 1 ( ) --- ( ( ) ( ) 1 --- ( ) 1 ( ) (?) IT 7K( )?? ( ) ( )? IT ( ) --- ( ) 1 ( ) --- ( ) (?) 2-3% Top-Level ICT Professional 5% ICT Professional 10% 100% 50% 20% Devl. Experiment Adv. ICT

More information

プレゼンテーション2.ppt

プレゼンテーション2.ppt ryamasi@hgc.jp BLAST Genome browser InterProScan PSORT DBTSS Seqlogo JASPAR Melina II Panther Babelomics +@ >cdna_test CCCCTGCCCTCAACAAGATGTTTTGCCAACTGGCCAAGACCTGCCCTGTGCAGCTGTGGGTTGATTCCAC ACCCCCGCCCGGCACCCGCGTCCGCGCCATGGCCATCTACAAGCAGTCACAGCACATGACGGAGGTTGTG

More information

L A TEX? Word Word Word Word WYSIWYG T E X by Donald Knuth L A T E X by Leslie Lamport L A T E X 2ε L A T E X 2ε, pt E X, pl A T E X LATEX p.2/27

L A TEX? Word Word Word Word WYSIWYG T E X by Donald Knuth L A T E X by Leslie Lamport L A T E X 2ε L A T E X 2ε, pt E X, pl A T E X LATEX p.2/27 L A TEX 2007 2007 10 5 ( ) 338 8570 255 Tel: 048 858 3577, Fax : 048 858 3716 Email: tohru@mail.saitama-u.ac.jp URL: http://www.nls.ics.saitama-u.ac.jp/ tohru/ LATEX p.1/27 L A TEX? Word Word Word Word

More information

電気通信大学 コンピュータリテラシー 文書整形 --- LaTeX ---

電気通信大学 コンピュータリテラシー 文書整形 --- LaTeX --- 1 L A TEX B5 1. LaTeX ( ) : 1 3 2. LaTeX ( ) : 4 7 3. LaTeX (,, EPS ) : 8 10 4. LaTeX ( ) : 11 textlatex.pdf : tiny.tex, tiny.pdf : 1 small.tex, small.pdf : 2 normal.tex, normal.pdf : f1.eps : normal.tex

More information

<4D F736F F F696E74202D F90B695A8947A97F189F090CD8AEE91625F3189F196DA5F8E9197BF2E >

<4D F736F F F696E74202D F90B695A8947A97F189F090CD8AEE91625F3189F196DA5F8E9197BF2E > 2 物配列 = 塩基配列 およびアミノ酸配列 塩基配列 = DNA の塩基 (G A T C) の並び順 どのようにして, 塩基配列 (GATCの並び順) を読むのか? 塩基配列の決定法 = DNA シークエンシング 30 3 ジデオキシ法別名 : サンガー法 Sanger et al., 1977 DNAポリメラーゼを使って相補鎖を合成する反応を う 特定のヌクレオチドの位置で反応が停 す るようにしておく

More information

AJACS_komachi.key

AJACS_komachi.key Tweet OK 統合データベース講習会 AJACSこまち 塩基配列解析のための データベース ウェブツールと CRISPRガイドRNA設計 ライフサイエンス統合データベースセンター (DBCLS) 内藤雄樹 自己紹介 内藤 雄樹 ないとう ゆうき @meso_cacase ライフサイエンス統合データベース センター DBCLS 特任助教 過去に RNAi メカニズム等の研究 sirna設計サイト:

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 11 20 p.1/34 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

csj-report.pdf

csj-report.pdf 527 9 CSJ CSJ CSJ 1 8 XML CSJ XML Browser (MonoForC) CSJ 1.7 CSJ CSJ CSJ 9.1 GREP GREP Unix Windows Windows (http://www.vector.co.jp/) Trn Windows Trn > > grep *.trn 528 9 CSJ A01F0132.trn:& A01M0097.trn:&

More information

template.dvi

template.dvi XVI W I D E P R O J E C T 16 1 igeoid Internet GEOgraphical Information Platform Development ULP 2 2.1 PDA GPS Global Positioning System IC RFID ID LAN 2.1.1 GPS LAN IC 2.1 2.2 2.2.1 163 16 16 16 W I

More information

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200,

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, WEB DB PRESS Vol.1 79 3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, http://www.postgresql.org/http://www.jp.postgresql.org/ 80 WEB DB PRESS

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

More information

スライド 1

スライド 1 ゲノム間の保存配列の解析 大阪大学微生物病研究所遺伝情報実験センターゲノム情報解析分野 2005 年 10 月 12 日 自己紹介 研究内容 保存配列の解析 (1) 目次 すべての生物のゲノムに保存されている配列の解析 ゲノムデータのダウンロード BioRuby 保存配列の解析 (2) 転写開始点上流の保存配列の解析 sim4, BLAT, Spidey BioRuby モチーフ抽出ソフトウェア 研究内容

More information

3360 druby Web Who is translating it? http://dx.doi.org/10.1007/s10766-008-0086-1 $32.00 International Journal of PARALLEL PROGRAMING Must buy! http://dx.doi.org/10.1007/s10766-008-0086-1 toruby The

More information

Microsoft Word - Comtxt05.doc

Microsoft Word - Comtxt05.doc Ⅶ データベース Ⅶ-1.データベースの 定 義 コンピュータで 情 報 処 理 を 行 いやすいように 体 系 的 に 整 理 蓄 積 し 統 合 化 されたデータの 集 合 体 のこと 一 般 にデータベースは 利 用 者 が データを 共 有 して 利 用 するため データベース 管 理 システム(DBMS) と 呼 ばれるソフトウェアによって 管 理 されている DBMSは コンピュータが

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 11 2004-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. FileMaker, Inc. FileMaker FileMaker,

More information

プレゼンテーション3

プレゼンテーション3 ryamasi@hgc.jp >cdna_test CCCCTGCCCTCAACAAGATGTTTTGCCAACTGGCCAAGACCTGCCCTGTGCAGCTGTGGGTTGATTCCAC ACCCCCGCCCGGCACCCGCGTCCGCGCCATGGCCATCTACAAGCAGTCACAGCACATGACGGAGGTTGTG AGGCGCTGCCCCCACCATGAGCGCTGCTCAGATAGCGATGGTCTGGCCCCTCCTCAGCATCTTATCCGAG

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

More information

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A Central Authentication System naito@math.nagoya-u.ac.jp to@math.nagoya-u.ac.jp, Powered by Adobe Reader & ipod Photo March 10, 2005 RIMS p. 1/55 CAS Yale Open Source software Authentication Authorization

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

MCMD Ruby Package Documentation NYSOL : Ver. 1.0 revise history: March 10, 2014 : nysol November 2, 2013 : first release 2014 3 10 Copyright c 2013 by NYSOL CORPORATION 3 1 5 1.1.....................................................

More information

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~ alse

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I  Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~alse I Exercise on Programming I http://bit.ly/oitprog1 1, 2 of 14 ( RD S ) I 1, 2 of 14 1 / 44 Ruby Ruby ( RD S ) I 1, 2 of 14 2 / 44 7 5 9 2 9 3 3 2 6 5 1 3 2 5 6 4 7 8 4 5 2 7 9 6 4 7 1 3 ( RD S ) I 1, 2

More information

CpG (Whole genome bisulfite sequencing; WGBS) MeDip-Seq 1 DNA CpG-rich 1. SureSelect Reduced representation bisulfite sequencing (RRBS) DNA CpG PCR DN

CpG (Whole genome bisulfite sequencing; WGBS) MeDip-Seq 1 DNA CpG-rich 1. SureSelect Reduced representation bisulfite sequencing (RRBS) DNA CpG PCR DN Agilent SureSelect XT Human Methyl-Seq 1 DNA Agilent SureSelect XT Human Methyl-Seq 1 SureSelect DNA Agilent SureSelect XT Human Methyl-Seq 370 CpG Human Methyl- Seq CpG shore shelf CpG 4000 CpG 2kb CpG

More information

<4D F736F F F696E74202D205B979D8CA C5D20836F CA48B868ED28CFC82AF8E B F72312E B8CD

<4D F736F F F696E74202D205B979D8CA C5D20836F CA48B868ED28CFC82AF8E B F72312E B8CD 理研シンポジウム 2008 独立行政法人理化学研究所和光本所鈴木梅太郎ホール 2008 年 3 月 13 日 バイオ研究者向け支援サービス 独立行政法人理化学研究所情報基盤センター横浜チーム スパコン利用者から見るバイオインフォマティクス概要 工学 12% 脳科学 3% 情報工学 7% 化学 7% 物理学 35% ライフサイエンス 36% RSCC( スパコン ) 利用のユーザ比率 工学情報工学 2%

More information

Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3. Form Cookie...6 2.4....7 2.5. HTTP...7 3. STEPS Web...8 3.1....8

Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3. Form Cookie...6 2.4....7 2.5. HTTP...7 3. STEPS Web...8 3.1....8 2001/1/11 Web Simplified Techniques for Econometric Plannings & Simulations for WWW Fujiwara Takamichi 97-5075 N-23 Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3.

More information

雲の中のWebアプリケーション監視術!~いまなら間に合うクラウド時代の性能監視入門~

雲の中のWebアプリケーション監視術!~いまなら間に合うクラウド時代の性能監視入門~ Oracle Direct Seminar Web Oracle Direct Concierge SQL Server MySQL PostgreSQL Access Oracle Database Oracle Developer/2000 Web Oracle Database Oracle Database http://www.oracle.com/lang/jp/direct/services.html

More information

橡t15-shibuya.kashiwa.ppt

橡t15-shibuya.kashiwa.ppt PHPLib PHPLib 1 Web Application PHPLib DB_S PostgreSQL, MySQL, Oracle, ODBC Session GET Auth Perm User 2 PHPLib local.inc Require($_PHPLIB[ libdir ]. db_mysql.inc ); db_pgsql.inc prepend.php3 Php3.ini

More information

PowerPoint Presentation

PowerPoint Presentation UML 2004 7 9 10 ... OOP UML 10 Copyright 2004 Akira HIRASAWA all rights reserved. 2 1. 2. 3. 4. UML 5. Copyright 2004 Akira HIRASAWA all rights reserved. 3 1..... Copyright 2004 Akira HIRASAWA all rights

More information

配列検索 よくあるご質問

配列検索 よくあるご質問 質問 Q ホモロジー検索におけるスコア値 (Score) と同一性 (Identities) の関係は? Q2 アライメント情報に表示されるハイフン (-), プラス (+), コロン (:) などの意味を知りたい. Q3 BLAST ホモロジー検索の結果で, 自分が作成した配列質問式に含めていない XXX や NNN が表示されることがあります. なぜですか? ( 低分子領域とは?) Q4 tblastn,

More information

JPドメイン名レジストリレポート 2013

JPドメイン名レジストリレポート 2013 2013.1-12 Registry Report Registry Report Index 03 06 19 21 02 22 23 24 25 26 27 28 29 31 34 35 36 Registry Report 01 02 Registry Report Registry Report 03 04 Registry Report Registry Report 05 06 Registry

More information

Microsoft PowerPoint - BIセンターセミナー2013.pptx[読み取り専用]

Microsoft PowerPoint - BIセンターセミナー2013.pptx[読み取り専用] 遺伝子配列解析の基礎 genome=gene+ome DNA 配列からタンパク質へ cgtgctttccacgacggtgacacgcttccctggattggccagactgccttccgggtcactgccatggaggagccgcagtcagatcctagcgtcgagccccctctga gtcaggaaacattttcagacctatggaaactacttcctgaaaacaacgttctgtcccccttgccgtcccaagcaatggatgatttgatgctgtccccggacgatattga

More information

untitled

untitled CA Easytrieve CA Technologies CA Easytrieve P 3 7 P 8 30 16 DB2 IMS IMS ADABAS JCL OS 2 Copyright 2012 CA. All rights reserved. CA Easytrieve CA Easytrieve CA Easytrieve CA Easytrieve COBOL,PL/I 3 Copyright

More information

Microsoft Word - jmanual.doc

Microsoft Word - jmanual.doc i 1. TogoDocClient... 1 1.1.... 2 2.... 3 2.1.... 3 2.2.... 3 2.2.1. (Windows)... 3 2.2.2. (Mac OS X)... 3 2.3.... 3 2.4.... 3 2.5.... 4 2.6.... 4 3.... 5 3.1.... 5 3.1.1. Article Explorer... 5 3.1.2....

More information

第3回_416.ppt

第3回_416.ppt 3 3 2010 4 IPA Web http://www.ipa.go.jp/security/awareness/vendor/programming Copyright 2010 IPA 1 3-1 3-1-1 SQL #1 3-1-2 SQL #2 3-1-3 3-1-4 3-2 3-2-1 #2 3-2-2 #1 3-2-3 HTTP 3-3 3-3-1 3-3-2 Copyright 2010

More information

バクテリアゲノム解析

バクテリアゲノム解析 GCCGTAGCTACCTTTACAATA GCCGTAGCT AGCTACC GCTACCTTT CCTTTAC CTTTACAATA GCCG CCGT CGTA GTAG TAGC AGCT AGCT GCTA CTAC TACC GCTA CTAC TACC ACCT CCTT CTTT CCTT CTTT TTTA TTAC CTTT TTTA TTAC TACA ACAA CAAT AATA

More information

DICOM Conformance Statement Carino

DICOM Conformance Statement Carino Carino 2016,03,17 E1J-HC0010-01 Copyright Hitachi, Ltd. 2016. All rights reserved. 1 1 1 2 3 3 AE 3 3 AE 4 4 4 4 4 4 5 5 5 5 SOP SOP 6 6 6 TCP/IP 6 API 6 6 7 SOP 7 7 7 AE 7 7 7 A 8 ( 2 ) E1J-HC0010 DICOM

More information

RubyKaigi2009 COBOL

RubyKaigi2009 COBOL RubyKaigi2009 COBOL seki@druby.org 3360 Pragmatic Bookshelf druby Web $32.00 International Journal of PARALLEL PROGRAMING !? MapReduce Rinda (map, reduce) map reduce key value [, ] [, ID] map()

More information

計算機生命科学の基礎II_

計算機生命科学の基礎II_ Ⅱ 1.4 atsushi_doi@cell-innovator.com 812-8582 3-1-1 8 806 http://www.cell-innovator.com BioGPS Connectivity Map The Cancer Genome Atlas (TCGA); cbioportal GO DAVID, GSEA WCGNA BioGPS http://biogps.org/

More information

Journal of Citation Reports JCRon CD-ROM 2001 / Science Edition JCR 247

Journal of Citation Reports JCRon CD-ROM 2001 / Science Edition JCR 247 ************************************************************************************** ************************************************************************************** 92 900 20 00 20 15 24 00 900

More information

CAC

CAC VOL.24NO.1 61 IMS Transaction 3270 DataBase Transaction OS/370 IMS Traditional Transaction Web Browser Transaction Internet WWW AP IIS APache WebLogic Websphere DataBase Oracle DB2 SQL Server Web Browser

More information

1:.anchors Menubar Sequence Navigation order Plot & Color options Left sidebar ON/OFF Right sidebar ON/OFF History / Bookmark Apply sequence order / p

1:.anchors Menubar Sequence Navigation order Plot & Color options Left sidebar ON/OFF Right sidebar ON/OFF History / Bookmark Apply sequence order / p GMV 2009 2 1 GMV GMV 1.1 GMV Murasaki GMV (GTK+ based Murasaki Viewer) 1.1.1 GMV GMV Murasaki (http://murasaki.dna.bio.keio.ac.jp/gmv.html) 1.1.2 gmv Open Anchors File ( 1) murasaki 1.1.3 GMV 2 GMV on/off

More information

untitled

untitled 30 callcc yhara ( ( ) (1) callcc (2) callcc (3) callcc callcc Continuation callcc (1) (2) (3) (1) (2) (3) (4) class Foo def f p 1 callcc{ cc return cc} p 2 class Bar def initialize @cc = Foo.new.f def

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

1 I EViews View Proc Freeze

1 I EViews View Proc Freeze EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................

More information

1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2.........................

1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2......................... 18 PHP Ajax 1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2................................... 3 2 7 2.1.......................

More information

1. VarySysDB 1.1 VaryGene2 1.2 LD Search system 1.3 Genome Browser (GBrowse) 2. - 2 -

1. VarySysDB 1.1 VaryGene2 1.2 LD Search system 1.3 Genome Browser (GBrowse) 2. - 2 - 2008-08-07 version 1.0-1 - 1. VarySysDB 1.1 VaryGene2 1.2 LD Search system 1.3 Genome Browser (GBrowse) 2. - 2 - 1-1 Home - 3 - VaryGene 2 1 VarySysDB Polymorphism Search Polymorphism Table Transcript

More information

CASSIOPEIA E-3000 ユーザーズガイド

CASSIOPEIA E-3000 ユーザーズガイド Pocket PC 1 3 2 1 u 4 5 6 7 y t 8 r e 9 w q 0 1 2 3 4 5 6 7 8 9 0 q w e r t y u 1 o g i g f d p s a i o p a 1 s d f g 1 1 1 1 1 1 3 2 1 1 1 1 2 1 1 2 1 2 2 2 2 2 2 2 2 (! #$%&

More information

WEB DB PRESS Vol.1 65

WEB DB PRESS Vol.1 65 http://www.fastcgi.com/ http://perl.apache.org/ 64 WEB DB PRESS Vol.1 WEB DB PRESS Vol.1 65 Powered by mod_perl, Apache & MySQL my $input; my %form; read STDIN, $input, $ENV{'CONTENT_LENGTH'}; foreach

More information

tkk0408nari

tkk0408nari SQLStatement Class Sql Database SQL Structured Query Language( ) ISO JIS http://www.techscore.com/tech/sql/02_02.html Database sql Perl Java SQL ( ) create table tu_data ( id integer not null, -- id aid

More information

comp -MYPEDIA Programing- Ruby 1 attr_accessor :< 1>, :< 2> class Car def = carname end attr_accessor :name end car = Car.ne

comp -MYPEDIA Programing- Ruby 1 attr_accessor :< 1>, :< 2> class Car def = carname end attr_accessor :name end car = Car.ne Ruby 1 attr_accessor :< 1>, :< 2> class Car def initialize(carname) @name = carname attr_accessor :name car = Car.new("car1") car.name = "car2" puts car.name attr_reader :< 1>, :< 2> class Car def initialize(carname)

More information

Oracle XML DB によるスケーラビリティおよびパフォーマンス検証 - MML v.3.0

Oracle XML DB によるスケーラビリティおよびパフォーマンス検証 - MML v.3.0 Oracle XML DB MML v3.0 2004 5 27 1 Memo 1 Agenda XML MML v3.0 2 Oracle XML Oracle XML DB XML API Oracle XML DB W3C XML Schema 1.0 XPath 1.0 XSLT 1.0 Oracle W3C XML Schema Oracle 2 XML Oracle XML Developer

More information

001 No.3/12 1 1 2 3 4 5 6 4 8 13 27 33 39 001 No.3/12 4 001 No.3/12 5 001 No.3/12 6 001 No.3/12 7 001 8 No.3/12 001 No.3/12 9 001 10 No.3/12 001 No.3/12 11 Index 1 2 3 14 18 21 001 No.3/12 14 001 No.3/12

More information