summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
-rw-r--r--qsar-report.gemspec4
-rw-r--r--test/all.rb4
-rw-r--r--test/qprf-report.rb2
4 files changed, 11 insertions, 6 deletions
diff --git a/README.md b/README.md
index 89de681..f3af312 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,11 @@
# QSAR-Report
-QMRF and QPRF reporting extension to OpenTox ruby modules and lazar.
+QMRF and QPRF reporting extension to OpenTox ruby modules and lazar.
+The QSAR-report gem was developed to extend the lazar and nano-lazar toxicity prediction application with QMRF and QPRF reporting features.
+The library gem is independent from lazar or nano-lazar and can also be used in any other ruby code.
+
## About
Classes for QMRF and QPRF reporting.
+
* OpenTox::QMRFReport:
Provides a ruby OpenTox class to prepare an initial version of a QMRF report.
The XML output is in QMRF version 1.3 and can be finalized with the QMRF editor 2.0 (https://sourceforge.net/projects/qmrf/)
@@ -9,6 +13,7 @@ Classes for QMRF and QPRF reporting.
Provides a ruby OpenTox class to prepare an initial version of a QPRF (version 1.1) report in JSON or HTML.
## Usage
+
### QMRF
create a new QMRF report, add some content and show output:
```ruby
diff --git a/qsar-report.gemspec b/qsar-report.gemspec
index 766b9f2..5d98ba8 100644
--- a/qsar-report.gemspec
+++ b/qsar-report.gemspec
@@ -3,7 +3,7 @@
Gem::Specification.new do |s|
s.name = "qsar-report"
s.version = File.read("./VERSION")
- s.date = "2016-09-14"
+ s.date = "2016-09-16"
s.authors = ["Micha Rautenberg"]
s.email = ["rautenberg@in-silico.ch"]
s.homepage = "https://github.com/opentox/qsar-report"
@@ -20,4 +20,4 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "haml", '~> 4.0'
s.add_runtime_dependency "json", '~> 1.8'
-end \ No newline at end of file
+end
diff --git a/test/all.rb b/test/all.rb
index b8ab099..83f13d0 100644
--- a/test/all.rb
+++ b/test/all.rb
@@ -1,3 +1,3 @@
-["qmrf-report.rb","qprf-report.rb"].each do |test|
+["qmrf-report.rb", "qprf-report.rb"].each do |test|
require_relative test
-end \ No newline at end of file
+end
diff --git a/test/qprf-report.rb b/test/qprf-report.rb
index a27ac38..f136326 100644
--- a/test/qprf-report.rb
+++ b/test/qprf-report.rb
@@ -1,6 +1,6 @@
require_relative "setup.rb"
-class QMRFReportTest < MiniTest::Test
+class QPRFReportTest < MiniTest::Test
def test_0_self
puts "MiniTest #{self.class} start OK"