X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=wiki%2FRubyExamples.wiki;h=3d501995a8d88358fc5ea2f01799b6bc95758bc8;hb=c3c6fec29bef1013ad55aa54516689ce22952a0a;hp=f7de251185573ffbacf98084e83b1147eed2ca19;hpb=f732f6f2fb268c285a85acb5250b8e9ad5367c97;p=jalview.git diff --git a/wiki/RubyExamples.wiki b/wiki/RubyExamples.wiki index f7de251..3d50199 100644 --- a/wiki/RubyExamples.wiki +++ b/wiki/RubyExamples.wiki @@ -1,10 +1,10 @@ #summary Ruby examples -= Introduction = += Ruby Examples = -Various Ruby examples. +Various simple Ruby examples. -Author: [http://www.cmzmasek.net/ Christian M Zmasek], Sanford-Burnham Medical Research Institute +Author: [https://sites.google.com/site/cmzmasek/ Christian Zmasek], Sanford-Burnham Medical Research Institute Copyright (C) 2011 Christian M Zmasek. All rights reserved. @@ -12,6 +12,8 @@ Copyright (C) 2011 Christian M Zmasek. All rights reserved. = Using net/ftp to download all Proteomes from the Ensembl Database = +This, or something like it, can be used to download from Ensembl all "pep.all.fa.gz" files. + {{{ require 'net/ftp' @@ -31,7 +33,8 @@ files.each do | file | pepfiles = ftp.list() pepfiles.each do | pepfile | pepfile = pepfile.split().last - if pepfile =~ /all.fa./ + if pepfile =~ /all.fa.gz/ # Only want the "all.fa.gz" files (and not the + # "abinitio" files). ftp.getbinaryfile(pepfile) puts 'downloaded "' + pepfile + '"' count += 1