Skip to content

Commit

Permalink
Added remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
pjotrp committed May 3, 2013
1 parent 5b8902f commit 75eb1ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -153,6 +153,7 @@ are


1. getorf: fetch all areas between start-stop and stop-stop codons in six frames (using EMBOSS when biolib is available) 1. getorf: fetch all areas between start-stop and stop-stop codons in six frames (using EMBOSS when biolib is available)
2. nt2aa.rb: translate in six frames (using EMBOSS when biolib is available) 2. nt2aa.rb: translate in six frames (using EMBOSS when biolib is available)
3. fasta_filter.rb


# Install # Install


Expand Down
6 changes: 4 additions & 2 deletions bin/getorf
Expand Up @@ -7,6 +7,8 @@
# #
# You can choose the heuristic on the command line (default stopstop). # You can choose the heuristic on the command line (default stopstop).


$stderr.print "WARNING: This tool has one or more known bugs! Better use the EMBOSS getorf instead for now\n"

rootpath = File.dirname(File.dirname(__FILE__)) rootpath = File.dirname(File.dirname(__FILE__))
$: << File.join(rootpath,'lib') $: << File.join(rootpath,'lib')


Expand Down Expand Up @@ -42,10 +44,10 @@ EXAMPLE
exit() exit()
} }


opts.on("-h heuristic", String, "Heuristic (stopstop)") do | s | opts.on("-h heuristic", String, "Heuristic (default #{heuristic})") do | s |
heuristic = s heuristic = s
end end
opts.on("-s size", "--min-size", Integer, "Minimal sequence size") do | n | opts.on("-s size", "--min-size", Integer, "Minimal sequence size (default #{minsize})") do | n |
minsize = n minsize = n
end end
opts.on("--longest", "Only get longest ORF match") do opts.on("--longest", "Only get longest ORF match") do
Expand Down

0 comments on commit 75eb1ad

Please sign in to comment.