From ea199e2a75e3ce5f9dab07f29d6f55fdef6b860d Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 18 May 2011 14:44:25 +0200 Subject: Added local svm classification --- lazar.rb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/lazar.rb b/lazar.rb index eb8b99e..de95efb 100644 --- a/lazar.rb +++ b/lazar.rb @@ -72,6 +72,34 @@ class LazarTest < Test::Unit::TestCase assert_equal prediction.measured_activities(compound).first, true end + def test_classification_svm_model + + # create model + model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri, :subjectid => @@subjectid, :prediction_algorithm => "local_svm_classification"}).to_s + lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid + @models << lazar + assert_equal lazar.features.size, 53 + + # single prediction + compound = OpenTox::Compound.from_smiles("c1ccccc1NN") + prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) + prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) + @predictions << prediction + assert_equal prediction.value(compound), false + assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) + assert_equal prediction.neighbors(compound).size, 14 + + # dataset prediction + test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) + prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri, :subjectid => @@subjectid), @@subjectid + @predictions << prediction + assert_equal prediction.compounds.size, 4 + compound = OpenTox::Compound.from_smiles "CC(=Nc1ccc2c(c1)Cc1ccccc21)O" + assert_equal prediction.value(compound), nil + assert_equal prediction.measured_activities(compound).first, true + + end + def test_ambit_classification_model # create model -- cgit v1.2.3 From 1c1a2ca0ae50e2f69b9e5cc50077a3fadb0e5f2f Mon Sep 17 00:00:00 2001 From: mguetlein Date: Wed, 18 May 2011 15:38:55 +0200 Subject: adding tests for new algorithm comparison report --- validation.rb | 135 +++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 91 insertions(+), 44 deletions(-) diff --git a/validation.rb b/validation.rb index 14ef5ee..74c6d23 100644 --- a/validation.rb +++ b/validation.rb @@ -35,11 +35,13 @@ class ValidationTest < Test::Unit::TestCase end @@data = [] - files = { File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, + files = { #File.new("data/hamster_carcinogenicity.csv") => :crossvalidation, + File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, + #File.new("data/EPAFHM.csv") => :crossvalidation, File.new("data/EPAFHM.mini.csv") => :crossvalidation, File.new("data/hamster_carcinogenicity.csv") => :validation, File.new("data/EPAFHM.csv") => :validation, -# File.new("data/StJudes-HepG2-testset_Class.csv") => :crossvalidation + #File.new("data/StJudes-HepG2-testset_Class.csv") => :crossvalidation } files.each do |file,type| @@data << { :type => type, @@ -91,7 +93,7 @@ class ValidationTest < Test::Unit::TestCase :random_seed => 2} t = OpenTox::SubTask.new(nil,0,1) def t.progress(pct) - if !defined?@last_msg or @last_msg+3 data[:data], - :algorithm_uri => File.join(CONFIG[:services]["opentox-algorithm"],"lazar"), - :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc"), - :prediction_feature => data[:feat], - :num_folds => 2 } - t = OpenTox::SubTask.new(nil,0,1) - def t.progress(pct) - if !defined?@last_msg or @last_msg+3 data[:data], + :algorithm_uri => File.join(CONFIG[:services]["opentox-algorithm"],"lazar"), + :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/"+fminer), + :prediction_feature => data[:feat], + :num_folds => 10 } + #:num_folds => 2 } + t = OpenTox::SubTask.new(nil,0,1) + def t.progress(pct) + if !defined?@last_msg or @last_msg+10 algorithm} ) + assert cv_list.include?(cv.uri) + cv_list.each do |cv_uri| + alg = OpenTox::Crossvalidation.find(cv_uri).metadata[OT.algorithm] + assert alg==algorithm,"wrong algorithm for filtered crossvalidation, should be: '"+algorithm.to_s+"', is: '"+alg.to_s+"'" + end + + @@cvs << cv + @@cv_datasets << data + @@cv_identifiers << fminer end - summary = cv.summary(@@subjectid) - assert_kind_of Hash,summary - - algorithm = cv.metadata[OT.algorithm] - assert algorithm.uri? - cv_list = OpenTox::Crossvalidation.list( {:algorithm => algorithm} ) - assert cv_list.include?(cv.uri) - cv_list.each do |cv_uri| - alg = OpenTox::Crossvalidation.find(cv_uri).metadata[OT.algorithm] - assert alg==algorithm,"wrong algorithm for filtered crossvalidation, should be: '"+algorithm.to_s+"', is: '"+alg.to_s+"'" - end - - @@cvs << cv end end end @@ -229,7 +238,7 @@ class ValidationTest < Test::Unit::TestCase OpenTox::CrossvalidationReport.create(cv.uri) end end - assert OpenTox::ValidationReport.find_for_validation(cv.uri,@@subjectid)==nil + assert OpenTox::CrossvalidationReport.find_for_crossvalidation(cv.uri,@@subjectid)==nil report = OpenTox::CrossvalidationReport.create(cv.uri,@@subjectid) assert report.uri.uri? if @@subjectid @@ -248,6 +257,43 @@ class ValidationTest < Test::Unit::TestCase end end + def test_crossvalidation_compare_report + @@reports = [] unless defined?@@reports + @@cvs.size.times do |i| + @@cvs.size.times do |j| + if j>i and @@cv_datasets[i]==@@cv_datasets[j] + puts "test_crossvalidation_compare_report" + assert_kind_of OpenTox::Crossvalidation,@@cvs[i] + assert_kind_of OpenTox::Crossvalidation,@@cvs[j] + hash = { @@cv_identifiers[i] => [@@cvs[i].uri], + @@cv_identifiers[j] => [@@cvs[j].uri] } + if @@subjectid + assert_rest_call_error OpenTox::NotAuthorizedError do + OpenTox::AlgorithmComparisonReport.create hash,@@subjectid + end + end + assert OpenTox::AlgorithmComparisonReport.find_for_crossvalidation(@@cvs[i].uri,@@subjectid)==nil + assert OpenTox::AlgorithmComparisonReport.find_for_crossvalidation(@@cvs[j].uri,@@subjectid)==nil + report = OpenTox::AlgorithmComparisonReport.create hash,@@subjectid + assert report.uri.uri? + if @@subjectid + assert_rest_call_error OpenTox::NotAuthorizedError do + OpenTox::AlgorithmComparisonReport.find(report.uri) + end + end + report = OpenTox::AlgorithmComparisonReport.find(report.uri,@@subjectid) + assert_valid_date report + assert report.uri.uri? + report2 = OpenTox::AlgorithmComparisonReport.find_for_crossvalidation(@@cvs[i].uri,@@subjectid) + assert_equal report.uri,report2.uri + report3 = OpenTox::AlgorithmComparisonReport.find_for_crossvalidation(@@cvs[j].uri,@@subjectid) + assert_equal report.uri,report3.uri + @@reports << report2 + end + end + end + end + def test_qmrf_report #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/13", @@subjectid) @@ -302,8 +348,9 @@ class ValidationTest < Test::Unit::TestCase raise "no opentox object" unless opentox_object.class.to_s.split("::").first=="OpenTox" assert opentox_object.metadata.is_a?(Hash) assert opentox_object.metadata[DC.date].to_s.length>0,"date not set for "+opentox_object.uri.to_s+", is metadata loaded? (use find)" -=begin time = Time.parse(opentox_object.metadata[DC.date]) + assert time!=nil +=begin assert timeTime.new-(10*60),opentox_object.uri.to_s+" took longer than 10 minutes "+time.to_s =end -- cgit v1.2.3 From 4cb1a3e3329f3b4cdcc2488b047474d105ff5796 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 19 May 2011 10:04:41 +0200 Subject: Fixed regression expected values for nu=0.5 --- lazar.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lazar.rb b/lazar.rb index de95efb..4a7a51a 100644 --- a/lazar.rb +++ b/lazar.rb @@ -31,8 +31,8 @@ class LazarTest < Test::Unit::TestCase prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid).to_s prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound).round_to(4), 0.3469.round_to(4) - assert_equal prediction.confidence(compound).round_to(4), 0.3223.round_to(4) + assert_equal prediction.value(compound).round_to(3),0.2849.round_to(3) + assert_equal prediction.confidence(compound).round_to(3), 0.3223.round_to(3) assert_equal prediction.neighbors(compound).size, 73 end -- cgit v1.2.3 From f89b8bb8cae41a814b97340324338a8046ddabf9 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Mon, 23 May 2011 17:15:38 +0200 Subject: owl-dl tests for models added --- lazar.rb | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lazar.rb b/lazar.rb index eb8b99e..a7a2042 100644 --- a/lazar.rb +++ b/lazar.rb @@ -1,6 +1,7 @@ require 'rubygems' require 'opentox-ruby' require 'test/unit' +require "./validate-owl.rb" class Float def round_to(x) @@ -24,6 +25,8 @@ class LazarTest < Test::Unit::TestCase =end def test_create_regression_model model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@regression_training_dataset.uri, :subjectid => @@subjectid}).to_s + puts model_uri + validate_owl model_uri,@@subjectid lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid @models << lazar assert_equal 185, lazar.features.size @@ -31,7 +34,7 @@ class LazarTest < Test::Unit::TestCase prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid).to_s prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound).round_to(4), 0.3469.round_to(4) + assert_equal prediction.value(compound).round_to(4), 0.2847.round_to(4) assert_equal prediction.confidence(compound).round_to(4), 0.3223.round_to(4) assert_equal prediction.neighbors(compound).size, 73 end @@ -40,6 +43,7 @@ class LazarTest < Test::Unit::TestCase # create model model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri, :subjectid => @@subjectid}).to_s + validate_owl model_uri,@@subjectid lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid @models << lazar assert_equal lazar.features.size, 52 @@ -49,6 +53,7 @@ class LazarTest < Test::Unit::TestCase prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction + #puts prediction_uri assert_equal prediction.value(compound), false assert_equal prediction.confidence(compound).round_to(4), 0.3067.round_to(4) assert_equal prediction.neighbors(compound).size, 14 @@ -72,6 +77,7 @@ class LazarTest < Test::Unit::TestCase assert_equal prediction.measured_activities(compound).first, true end +=begin def test_ambit_classification_model # create model @@ -80,6 +86,7 @@ class LazarTest < Test::Unit::TestCase #model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => dataset_uri, :prediction_feature => feature_uri}).to_s #lazar = OpenTox::Model::Lazar.find model_uri model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => dataset_uri, :prediction_feature => feature_uri, :subjectid => @@subjectid}).to_s + validate_owl model_uri,@@subjectid lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid assert_equal lazar.features.size, 6609 #puts "Model: #{lazar.uri}" @@ -111,7 +118,6 @@ class LazarTest < Test::Unit::TestCase # dataset prediction #@lazar.delete(@@subjectid) end -=begin =end end -- cgit v1.2.3 From 499c12403f4d03f413d8c9a160f0cf369ecbdbd0 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Tue, 24 May 2011 13:23:47 +0200 Subject: Changed hamster to true/false schema --- data/hamster_carcinogenicity.csv | 170 +++++++++++++++++++-------------------- 1 file changed, 85 insertions(+), 85 deletions(-) diff --git a/data/hamster_carcinogenicity.csv b/data/hamster_carcinogenicity.csv index d314193..52d89a3 100644 --- a/data/hamster_carcinogenicity.csv +++ b/data/hamster_carcinogenicity.csv @@ -1,86 +1,86 @@ SMILES, Hamster Carcinogenicity -CC=O,1 -C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,1 -O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,1 -C1(N=CNN=1)N,0 -Br(=O)(=O)[O-].[K+],1 -[Cl-].[Cd+2].[Cl-],0 -O=S(=O)([O-])[O-].[Cd+2],0 -ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,0 -ClCOC,1 -C=C(Cl)C=C,0 -Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,0 -O=C1OC2=C(C=CC=C2)C=C1,0 -ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,1 -ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,0 -C=CCN(CC=C)N=O,1 -Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,0 -O=C(N(C)C)Cl,1 -CN(C)N,1 -N(NC)C.[H]Cl.[H]Cl,1 -CCO,0 -O=C(N(CC)N=O)NCCO,1 -O=C(N(CC)N=O)NCC(=O)C,1 -C=O,0 -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,1 -O=CC1=CC=CO1,0 -OCC1CO1,1 -O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,0 -ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,1 -NN,1 -OS(=O)(=O)O.NN,1 -CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,1 -OCCNN,0 -O=C(C1=CC=NC=C1)NN,0 -OC(=O)C1=CC=NC=C1,0 -O=C(NC1=CC=CC(=C1)Cl)OC(C)C,0 -O=C(NC1=CC=CC=C1)OC(C)C,0 -[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],0 -CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,0 -NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,0 -CN(N)C=O,1 -O=C(C(=C)C)OC,0 -CNN,1 -O=C(C1=CC=CN=C1)CCCN(N=O)C,0 -CC1=CC(=O)NC(=S)N1,1 -CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,0 -O=N[O-].[Na+],0 -[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,1 -[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,1 -O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],0 -N(CC(CO)O)(CC(O)C)N=O,1 -N(CC(CO)O)(CC(C)=O)N=O,1 -N(CC(CO)O)(CCO)N=O,0 -O=C(C)CN(N=O)CCO,1 -C1C(N(C(CN1N=O)C)C)C,1 -N(CC(C)=O)(CC=C)N=O,1 -N(CC(CO)O)(C)N=O,1 -O=NN1CCOCC1,1 -N1C=CC=C(C=1)C2N(N=O)CCC2,1 -C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,0 -O=NN1CCCCC1,1 -O=NN1CCCC1,1 -O=C(N(CC(C)=O)N=O)NCCCl,1 -N(C(=O)N)(N=O)CC(C)=O,1 -C1(CCN=C=S)=CC=CC=C1,0 -O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,0 -C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,0 -O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,0 -C1(=CC(=C(O)C=C1)O)C(O)=O,0 -O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,0 -C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,0 -C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,0 -OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,0 -ClC(=CCl)Cl,0 -NC(=O)OCC,1 -C=CCl,1 -N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,0 -C1(CN(CC(N1N=O)C)N=O)C,1 -N(CCN(C)C)(C)N=O,1 -C1(CN(N=O)CC(O1)C)C,1 -O1C(N(CC1C)N=O)=O,1 -CCOC(=O)N(C)N=O,1 -C1N(COC1)N=O,1 -O=C(N(CCC1=CC=CC=C1)N=O)N,1 -O=NN1CCC1,1 -F[B-](F)(F)F.[Na+],0 +CC=O,true +C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,true +O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,true +C1(N=CNN=1)N,false +Br(=O)(=O)[O-].[K+],true +[Cl-].[Cd+2].[Cl-],false +O=S(=O)([O-])[O-].[Cd+2],false +ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,false +ClCOC,true +C=C(Cl)C=C,false +Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,false +O=C1OC2=C(C=CC=C2)C=C1,false +ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,true +ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,false +C=CCN(CC=C)N=O,true +Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,false +O=C(N(C)C)Cl,true +CN(C)N,true +N(NC)C.[H]Cl.[H]Cl,true +CCO,false +O=C(N(CC)N=O)NCCO,true +O=C(N(CC)N=O)NCC(=O)C,true +C=O,false +[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,true +O=CC1=CC=CO1,false +OCC1CO1,true +O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,false +ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,true +NN,true +OS(=O)(=O)O.NN,true +CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,true +OCCNN,false +O=C(C1=CC=NC=C1)NN,false +OC(=O)C1=CC=NC=C1,false +O=C(NC1=CC=CC(=C1)Cl)OC(C)C,false +O=C(NC1=CC=CC=C1)OC(C)C,false +[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],false +CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,false +NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,false +CN(N)C=O,true +O=C(C(=C)C)OC,false +CNN,true +O=C(C1=CC=CN=C1)CCCN(N=O)C,false +CC1=CC(=O)NC(=S)N1,true +CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,false +O=N[O-].[Na+],false +[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,true +[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,true +O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],false +N(CC(CO)O)(CC(O)C)N=O,true +N(CC(CO)O)(CC(C)=O)N=O,true +N(CC(CO)O)(CCO)N=O,false +O=C(C)CN(N=O)CCO,true +C1C(N(C(CN1N=O)C)C)C,true +N(CC(C)=O)(CC=C)N=O,true +N(CC(CO)O)(C)N=O,true +O=NN1CCOCC1,true +N1C=CC=C(C=1)C2N(N=O)CCC2,true +C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,false +O=NN1CCCCC1,true +O=NN1CCCC1,true +O=C(N(CC(C)=O)N=O)NCCCl,true +N(C(=O)N)(N=O)CC(C)=O,true +C1(CCN=C=S)=CC=CC=C1,false +O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,false +C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,false +O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,false +C1(=CC(=C(O)C=C1)O)C(O)=O,false +O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,false +C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,false +C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,false +OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,false +ClC(=CCl)Cl,false +NC(=O)OCC,true +C=CCl,true +N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,false +C1(CN(CC(N1N=O)C)N=O)C,true +N(CCN(C)C)(C)N=O,true +C1(CN(N=O)CC(O1)C)C,true +O1C(N(CC1C)N=O)=O,true +CCOC(=O)N(C)N=O,true +C1N(COC1)N=O,true +O=C(N(CCC1=CC=CC=C1)N=O)N,true +O=NN1CCC1,true +F[B-](F)(F)F.[Na+],false -- cgit v1.2.3 From 908ccc82b2ef1680bff2a17b23cac5919de2e38e Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Tue, 24 May 2011 14:49:07 +0200 Subject: Fixed feature set size for bbrc regression (see changes in algorithm.rb) --- fminer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fminer.rb b/fminer.rb index 1f99f77..4aecea5 100644 --- a/fminer.rb +++ b/fminer.rb @@ -19,7 +19,7 @@ class FminerTest < Test::Unit::TestCase dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s d =OpenTox::Dataset.new dataset_uri, @@subjectid d.load_features(@@subjectid) - assert_equal 185, d.features.size + assert_equal 219, d.features.size d.delete(@@subjectid) end -- cgit v1.2.3 From e28863129af071e25ec581b46c4160aaba75c33d Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 24 May 2011 16:17:46 +0200 Subject: add validation to tests again, slightly modify validation tests (qmrf model, more debugging options) --- all.rb | 2 +- validation.rb | 41 ++++++++++++++++++++++++++--------------- 2 files changed, 27 insertions(+), 16 deletions(-) diff --git a/all.rb b/all.rb index 8c5babd..850a309 100644 --- a/all.rb +++ b/all.rb @@ -10,4 +10,4 @@ require './task.rb' require './algorithm.rb' require './fminer.rb' require './lazar.rb' -#require './validation.rb' +require './validation.rb' diff --git a/validation.rb b/validation.rb index 74c6d23..0ff3c15 100644 --- a/validation.rb +++ b/validation.rb @@ -34,6 +34,8 @@ class ValidationTest < Test::Unit::TestCase @@subjectid = nil end + @@delete = true + @@feature_types = ["bbrc", "last"] @@data = [] files = { #File.new("data/hamster_carcinogenicity.csv") => :crossvalidation, File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, @@ -61,11 +63,13 @@ class ValidationTest < Test::Unit::TestCase def global_teardown puts "delete and logout" - @@data.each{|data| OpenTox::Dataset.find(data[:data],@@subjectid).delete(@@subjectid) if data[:delete]} - @@vs.each{|v| v.delete(@@subjectid)} if defined?@@vs - @@cvs.each{|cv| cv.delete(@@subjectid)} if defined?@@cvs - @@reports.each{|report| report.delete(@@subjectid)} if defined?@@reports - @@qmrfReports.each{|qmrfReport| qmrfReport.delete(@@subjectid)} if defined?@@qmrfReports + if @@delete + @@data.each{|data| OpenTox::Dataset.find(data[:data],@@subjectid).delete(@@subjectid) if data[:delete]} + @@vs.each{|v| v.delete(@@subjectid)} if defined?@@vs + @@cvs.each{|cv| cv.delete(@@subjectid)} if defined?@@cvs + @@reports.each{|report| report.delete(@@subjectid)} if defined?@@reports + @@qmrfReports.each{|qmrfReport| qmrfReport.delete(@@subjectid)} if defined?@@qmrfReports + end OpenTox::Authorization.logout(@@subjectid) if AA_SERVER end @@ -113,6 +117,7 @@ class ValidationTest < Test::Unit::TestCase assert model.uri? v_list = OpenTox::Validation.list( {:model => model} ) assert v_list.size==1 and v_list.include?(v.uri) + puts v.uri unless @@delete @@vs << v end end @@ -147,6 +152,7 @@ class ValidationTest < Test::Unit::TestCase assert_equal report.uri,report2.uri report3_uri = v.find_or_create_report(@@subjectid) assert_equal report.uri,report3_uri + puts report2.uri unless @@delete @@reports << report2 end end @@ -170,7 +176,7 @@ class ValidationTest < Test::Unit::TestCase @@cv_identifiers = [] @@data.each do |data| if data[:type]==:crossvalidation - ["bbrc", "last"].each do |fminer| + @@feature_types.each do |fminer| puts "test_crossvalidation "+data[:info].to_s+" "+fminer p = { :dataset_uri => data[:data], @@ -213,6 +219,7 @@ class ValidationTest < Test::Unit::TestCase alg = OpenTox::Crossvalidation.find(cv_uri).metadata[OT.algorithm] assert alg==algorithm,"wrong algorithm for filtered crossvalidation, should be: '"+algorithm.to_s+"', is: '"+alg.to_s+"'" end + puts cv.uri unless @@delete @@cvs << cv @@cv_datasets << data @@ -253,6 +260,7 @@ class ValidationTest < Test::Unit::TestCase assert_equal report.uri,report2.uri report3_uri = cv.find_or_create_report(@@subjectid) assert_equal report.uri,report3_uri + puts report2.uri unless @@delete @@reports << report2 end end @@ -288,6 +296,7 @@ class ValidationTest < Test::Unit::TestCase assert_equal report.uri,report2.uri report3 = OpenTox::AlgorithmComparisonReport.find_for_crossvalidation(@@cvs[j].uri,@@subjectid) assert_equal report.uri,report3.uri + puts report2.uri unless @@delete @@reports << report2 end end @@ -301,21 +310,23 @@ class ValidationTest < Test::Unit::TestCase @@cvs.each do |cv| puts "test_qmrf_report" assert defined?cv,"no crossvalidation defined" - validations = cv.metadata[OT.validation] - assert_kind_of Array,validations - assert validations.size==cv.metadata[OT.numFolds].to_i,validations.size.to_s+"!="+cv.metadata[OT.numFolds].to_s - val = OpenTox::Validation.find(validations[0], @@subjectid) - model_uri = val.metadata[OT.model] - + model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => cv.metadata[OT.dataset], :subjectid => @@subjectid}).to_s + assert model_uri.uri? +# validations = cv.metadata[OT.validation] +# assert_kind_of Array,validations +# assert validations.size==cv.metadata[OT.numFolds].to_i,validations.size.to_s+"!="+cv.metadata[OT.numFolds].to_s +# val = OpenTox::Validation.find(validations[0], @@subjectid) +# model_uri = val.metadata[OT.model] model = OpenTox::Model::Generic.find(model_uri, @@subjectid) assert model!=nil - #assert_rest_call_error OpenTox::NotFoundError do # OpenTox::QMRFReport.find_for_model(model_uri, @@subjectid) #end - - @@qmrfReports << OpenTox::QMRFReport.create(model_uri, @@subjectid) + qmrfReport = OpenTox::QMRFReport.create(model_uri, @@subjectid) + puts qmrfReport.uri unless @@delete + @@qmrfReports << qmrfReport end + end ################### utils and overrides ########################## -- cgit v1.2.3 From e26abb0026c611a75da6a0484003d50c1961804f Mon Sep 17 00:00:00 2001 From: mguetlein Date: Thu, 26 May 2011 15:22:18 +0200 Subject: fix validation test for small datasets and a&a --- validation.rb | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/validation.rb b/validation.rb index 0ff3c15..fe62782 100644 --- a/validation.rb +++ b/validation.rb @@ -181,7 +181,8 @@ class ValidationTest < Test::Unit::TestCase p = { :dataset_uri => data[:data], :algorithm_uri => File.join(CONFIG[:services]["opentox-algorithm"],"lazar"), - :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/"+fminer), + :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/"+fminer)+ + (data[:info] =~ /mini/ ? ";backbone=false;min_chisq_significance=0.0" : ""), :prediction_feature => data[:feat], :num_folds => 10 } #:num_folds => 2 } @@ -216,8 +217,17 @@ class ValidationTest < Test::Unit::TestCase cv_list = OpenTox::Crossvalidation.list( {:algorithm => algorithm} ) assert cv_list.include?(cv.uri) cv_list.each do |cv_uri| - alg = OpenTox::Crossvalidation.find(cv_uri).metadata[OT.algorithm] - assert alg==algorithm,"wrong algorithm for filtered crossvalidation, should be: '"+algorithm.to_s+"', is: '"+alg.to_s+"'" + begin + alg = OpenTox::Crossvalidation.find(cv_uri, @@subjectid).metadata[OT.algorithm] + assert alg==algorithm,"wrong algorithm for filtered crossvalidation, should be: '"+algorithm.to_s+"', is: '"+alg.to_s+"'" + rescue OpenTox::RestCallError => e + raise "error Report of RestCallError is no errorReport: "+e.errorCause.class.to_s+":\n"+e.errorCause.to_yaml unless e.errorCause.is_a?(OpenTox::ErrorReport) + report = e.errorCause + while report.errorCause + report = report.errorCause + end + assert_equal report.errorType,OpenTox::NotAuthorizedError.to_s + end end puts cv.uri unless @@delete -- cgit v1.2.3 From dd52bf371136322b9effb0640f6bc6538b8ba10c Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 26 May 2011 23:08:41 +0200 Subject: regression tests adjusted --- lazar.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lazar.rb b/lazar.rb index 59ec9ca..a8b8de9 100644 --- a/lazar.rb +++ b/lazar.rb @@ -29,16 +29,16 @@ class LazarTest < Test::Unit::TestCase validate_owl model_uri,@@subjectid lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid @models << lazar - assert_equal 185, lazar.features.size + assert_equal 219, lazar.features.size compound = OpenTox::Compound.from_smiles("c1ccccc1NN") prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid).to_s prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound).round_to(3),0.2849.round_to(3) - assert_equal prediction.confidence(compound).round_to(3), 0.3223.round_to(3) + assert_equal prediction.value(compound).round_to(3),0.378.round_to(3) + assert_equal prediction.confidence(compound).round_to(3), 0.276.round_to(3) #assert_equal prediction.value(compound).round_to(4), 0.2847.round_to(4) #assert_equal prediction.confidence(compound).round_to(4), 0.3223.round_to(4) - assert_equal prediction.neighbors(compound).size, 73 + assert_equal prediction.neighbors(compound).size, 61 end def test_classification_model -- cgit v1.2.3 From 355f2f97e3323ba8b60109e6c9524ef1f692ea1a Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 27 May 2011 09:40:39 +0200 Subject: Added prop models --- lazar.rb | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/lazar.rb b/lazar.rb index a8b8de9..a88801d 100644 --- a/lazar.rb +++ b/lazar.rb @@ -25,7 +25,7 @@ class LazarTest < Test::Unit::TestCase =end def test_create_regression_model model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@regression_training_dataset.uri, :subjectid => @@subjectid}).to_s - puts model_uri + #puts model_uri validate_owl model_uri,@@subjectid lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid @models << lazar @@ -41,6 +41,24 @@ class LazarTest < Test::Unit::TestCase assert_equal prediction.neighbors(compound).size, 61 end + def test_create_regression_prop_model + model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@regression_training_dataset.uri, :subjectid => @@subjectid, :local_svm_kernel => "propositionalized"}).to_s + #puts model_uri + validate_owl model_uri,@@subjectid + lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid + @models << lazar + assert_equal 219, lazar.features.size + compound = OpenTox::Compound.from_smiles("c1ccccc1NN") + prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid).to_s + prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) + @predictions << prediction + assert_equal prediction.value(compound).round_to(1),0.1.round_to(1) + assert_equal prediction.confidence(compound).round_to(3), 0.276.round_to(3) + #assert_equal prediction.value(compound).round_to(4), 0.2847.round_to(4) + #assert_equal prediction.confidence(compound).round_to(4), 0.3223.round_to(4) + assert_equal prediction.neighbors(compound).size, 61 + end + def test_classification_model # create model @@ -96,6 +114,34 @@ class LazarTest < Test::Unit::TestCase assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) assert_equal prediction.neighbors(compound).size, 14 + # dataset prediction + test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) + prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri, :subjectid => @@subjectid), @@subjectid + @predictions << prediction + assert_equal prediction.compounds.size, 4 + compound = OpenTox::Compound.from_smiles "CC(=Nc1ccc2c(c1)Cc1ccccc21)O" + assert_equal prediction.value(compound), nil + assert_equal prediction.measured_activities(compound).first, true + end + + def test_classification_svm_prop_model + + + # create model + model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri, :subjectid => @@subjectid, :prediction_algorithm => "local_svm_classification", :local_svm_kernel => "propositionalized"}).to_s + lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid + @models << lazar + assert_equal lazar.features.size, 52 + + # single prediction + compound = OpenTox::Compound.from_smiles("c1ccccc1NN") + prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) + prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) + @predictions << prediction + assert_equal prediction.value(compound), false + assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) + assert_equal prediction.neighbors(compound).size, 14 + # dataset prediction test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri, :subjectid => @@subjectid), @@subjectid -- cgit v1.2.3 From e9d9e60312f6dd2def1b70142a32db6021de1fbb Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 27 May 2011 10:12:10 +0200 Subject: remplace hamster.mini with normal hamster, empty prediction datasets currently not accepted by validation --- validation.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/validation.rb b/validation.rb index fe62782..58229a7 100644 --- a/validation.rb +++ b/validation.rb @@ -37,12 +37,12 @@ class ValidationTest < Test::Unit::TestCase @@delete = true @@feature_types = ["bbrc", "last"] @@data = [] - files = { #File.new("data/hamster_carcinogenicity.csv") => :crossvalidation, - File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, - #File.new("data/EPAFHM.csv") => :crossvalidation, - File.new("data/EPAFHM.mini.csv") => :crossvalidation, - File.new("data/hamster_carcinogenicity.csv") => :validation, - File.new("data/EPAFHM.csv") => :validation, + files = { File.new("data/hamster_carcinogenicity.csv") => :crossvalidation, + #File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, + #File.new("data/EPAFHM.csv") => :crossvalidation, + File.new("data/EPAFHM.mini.csv") => :crossvalidation, + File.new("data/hamster_carcinogenicity.csv") => :validation, + File.new("data/EPAFHM.csv") => :validation, #File.new("data/StJudes-HepG2-testset_Class.csv") => :crossvalidation } files.each do |file,type| -- cgit v1.2.3 From bf506ee57a5b8997d10c8010d1c5d8c8e97763b1 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 27 May 2011 17:55:39 +0200 Subject: test for bbrc rest parameters added --- fminer.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/fminer.rb b/fminer.rb index 4aecea5..aa95d11 100644 --- a/fminer.rb +++ b/fminer.rb @@ -32,6 +32,21 @@ class FminerTest < Test::Unit::TestCase d.delete(@@subjectid) end + def test_bbrc_rest_parameters + feature = @@classification_training_dataset.features.keys.first + #call = "curl -X POST #{File.join CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"} -d \"dataset_uri=#{CGI.escape @@classification_training_dataset.uri}\" -d \"prediction_feature=#{CGI.escape feature}\" -d \"backbone=true\" -d \"min_frequency=2\"" + dataset_uri = OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"),{ + "dataset_uri" => @@classification_training_dataset.uri, + "prediction_feature" => feature, + "backbone" => true, + "min_frequency" => 2, + :subjectid => @@subjectid }) + d =OpenTox::Dataset.new dataset_uri, @@subjectid + d.load_features(@@subjectid) + assert_equal 52, d.features.size + + end + # Deactivated by AM because of efficiency problems (does not return) # def test_regression_last # feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" -- cgit v1.2.3 From c4a339bc2e22762359a3bad97c60407550159e25 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 30 May 2011 10:42:05 +0200 Subject: fix dataset delete error in validation test --- validation.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/validation.rb b/validation.rb index 58229a7..02653fc 100644 --- a/validation.rb +++ b/validation.rb @@ -64,7 +64,8 @@ class ValidationTest < Test::Unit::TestCase def global_teardown puts "delete and logout" if @@delete - @@data.each{|data| OpenTox::Dataset.find(data[:data],@@subjectid).delete(@@subjectid) if data[:delete]} + @@data.each{|data| OpenTox::Dataset.find(data[:data],@@subjectid).delete(@@subjectid) if data[:delete] and + OpenTox::Dataset.exist?(data[:data]) } @@vs.each{|v| v.delete(@@subjectid)} if defined?@@vs @@cvs.each{|cv| cv.delete(@@subjectid)} if defined?@@cvs @@reports.each{|report| report.delete(@@subjectid)} if defined?@@reports -- cgit v1.2.3 From 854b795a944d08db08a543127d7ec2d986a7889a Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Tue, 31 May 2011 10:59:45 +0200 Subject: keep classes from external datasets --- lazar.rb | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lazar.rb b/lazar.rb index a88801d..b5de8aa 100644 --- a/lazar.rb +++ b/lazar.rb @@ -74,7 +74,7 @@ class LazarTest < Test::Unit::TestCase prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction #puts prediction_uri - assert_equal prediction.value(compound), false + assert_equal prediction.value(compound), "false" assert_equal prediction.confidence(compound).round_to(4), 0.3067.round_to(4) assert_equal prediction.neighbors(compound).size, 14 @@ -84,7 +84,7 @@ class LazarTest < Test::Unit::TestCase prediction = OpenTox::LazarPrediction.find prediction_uri, @@subjectid @predictions << prediction assert !prediction.measured_activities(compound).empty? - assert_equal prediction.measured_activities(compound).first, true + assert_equal prediction.measured_activities(compound).first.to_s, "true" assert prediction.value(compound).nil? # dataset prediction @@ -94,7 +94,7 @@ class LazarTest < Test::Unit::TestCase assert_equal prediction.compounds.size, 4 compound = OpenTox::Compound.from_smiles "CC(=Nc1ccc2c(c1)Cc1ccccc21)O" assert_equal prediction.value(compound), nil - assert_equal prediction.measured_activities(compound).first, true + assert_equal prediction.measured_activities(compound).first.to_s, "true" end def test_classification_svm_model @@ -110,7 +110,7 @@ class LazarTest < Test::Unit::TestCase prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound), false + assert_equal prediction.value(compound), "false" assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) assert_equal prediction.neighbors(compound).size, 14 @@ -138,7 +138,7 @@ class LazarTest < Test::Unit::TestCase prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound), false + assert_equal prediction.value(compound), "false" assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) assert_equal prediction.neighbors(compound).size, 14 @@ -153,18 +153,18 @@ class LazarTest < Test::Unit::TestCase end -=begin def test_ambit_classification_model # create model - dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/9" + dataset_uri = "http://apps.ideaconsult.net:8080/ambit2/dataset/9?max=400" feature_uri ="http://apps.ideaconsult.net:8080/ambit2/feature/21573" #model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => dataset_uri, :prediction_feature => feature_uri}).to_s #lazar = OpenTox::Model::Lazar.find model_uri model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => dataset_uri, :prediction_feature => feature_uri, :subjectid => @@subjectid}).to_s validate_owl model_uri,@@subjectid lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid - assert_equal lazar.features.size, 6609 + puts lazar.features.size + assert_equal lazar.features.size, 1874 #puts "Model: #{lazar.uri}" #puts lazar.features.size @@ -176,7 +176,7 @@ class LazarTest < Test::Unit::TestCase prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) #puts "Prediction: #{prediction.uri}" #puts prediction.value(compound) - assert_equal prediction.value(compound), true + assert_equal prediction.value(compound), "3.0" #puts @prediction.confidence(compound).round_to(4) #assert_equal @prediction.confidence(compound).round_to(4), 0.3005.round_to(4) #assert_equal @prediction.neighbors(compound).size, 15 @@ -194,6 +194,7 @@ class LazarTest < Test::Unit::TestCase # dataset prediction #@lazar.delete(@@subjectid) end +=begin =end end -- cgit v1.2.3 From 1c9f80e8dd360b3383cd00059b9cc181d1cca2ec Mon Sep 17 00:00:00 2001 From: mguetlein Date: Tue, 31 May 2011 23:29:50 +0200 Subject: test update: valiation of lazar applied to ambit datasets --- validation.rb | 146 ++++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 100 insertions(+), 46 deletions(-) diff --git a/validation.rb b/validation.rb index 02653fc..9723a33 100644 --- a/validation.rb +++ b/validation.rb @@ -22,7 +22,34 @@ class Exception end class ValidationTest < Test::Unit::TestCase - + + @@delete = true + @@feature_types = ["bbrc", "last"] + @@qmrf_test = true + @@data = [] + @@data << { :type => :crossvalidation, + :data => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?max=100", + :feat => "http://apps.ideaconsult.net:8080/ambit2/feature/26221", + :info => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?max=100" } + @@data << { :type => :training_test_validation, + :train_data => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?page=0&pagesize=150", + :test_data => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?page=3&pagesize=50", + :feat => "http://apps.ideaconsult.net:8080/ambit2/feature/26221", + :info => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?page=0&pagesize=150" } + @@data << { :type => :training_test_validation, + :train_data => "http://apps.ideaconsult.net:8080/ambit2/dataset/435293?page=0&pagesize=300", + :test_data => "http://apps.ideaconsult.net:8080/ambit2/dataset/435293?page=30&pagesize=10", + :feat => "http://apps.ideaconsult.net:8080/ambit2/feature/533748", + :info => "http://apps.ideaconsult.net:8080/ambit2/dataset/435293?page=0&pagesize=300" } + @@files = { File.new("data/hamster_carcinogenicity.csv") => :crossvalidation, + #File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, + #File.new("data/EPAFHM.csv") => :crossvalidation, + File.new("data/EPAFHM.mini.csv") => :crossvalidation, + File.new("data/hamster_carcinogenicity.csv") => :split_validation, + File.new("data/EPAFHM.csv") => :split_validation, + #File.new("data/StJudes-HepG2-testset_Class.csv") => :crossvalidation + } + def global_setup puts "login and upload datasets" if AA_SERVER @@ -33,39 +60,22 @@ class ValidationTest < Test::Unit::TestCase puts "AA disabled" @@subjectid = nil end - - @@delete = true - @@feature_types = ["bbrc", "last"] - @@data = [] - files = { File.new("data/hamster_carcinogenicity.csv") => :crossvalidation, - #File.new("data/hamster_carcinogenicity.mini.csv") => :crossvalidation, - #File.new("data/EPAFHM.csv") => :crossvalidation, - File.new("data/EPAFHM.mini.csv") => :crossvalidation, - File.new("data/hamster_carcinogenicity.csv") => :validation, - File.new("data/EPAFHM.csv") => :validation, - #File.new("data/StJudes-HepG2-testset_Class.csv") => :crossvalidation - } - files.each do |file,type| + @@files.each do |file,type| @@data << { :type => type, :data => ValidationTestUtil.upload_dataset(file, @@subjectid), :feat => ValidationTestUtil.prediction_feature_for_file(file), :info => file.path, :delete => true} end -# @@data << { :type => :crossvalidation, -# :data => "http://apps.ideaconsult.net:8080/ambit2/dataset/9?max=50", -# :feat => "http://apps.ideaconsult.net:8080/ambit2/feature/21573", -# :info => "http://apps.ideaconsult.net:8080/ambit2/dataset/9?max=50" } -# @@data << { :type => :validation, -# :data => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?max=50", -# :feat => "http://apps.ideaconsult.net:8080/ambit2/feature/26221", -# :info => "http://apps.ideaconsult.net:8080/ambit2/dataset/272?max=50" } end def global_teardown puts "delete and logout" if @@delete - @@data.each{|data| OpenTox::Dataset.find(data[:data],@@subjectid).delete(@@subjectid) if data[:delete] and - OpenTox::Dataset.exist?(data[:data]) } + [:data, :train_data, :test_data].each do |d| + @@data.each do |data| + OpenTox::Dataset.find(data[d],@@subjectid).delete(@@subjectid) if data[d] and data[:delete] and OpenTox::Dataset.exist?(data[d]) + end + end @@vs.each{|v| v.delete(@@subjectid)} if defined?@@vs @@cvs.each{|cv| cv.delete(@@subjectid)} if defined?@@cvs @@reports.each{|report| report.delete(@@subjectid)} if defined?@@reports @@ -87,7 +97,7 @@ class ValidationTest < Test::Unit::TestCase @@vs = [] @@data.each do |data| - if data[:type]==:validation + if data[:type]==:split_validation puts "test_training_test_split "+data[:info].to_s p = { :dataset_uri => data[:data], @@ -124,6 +134,48 @@ class ValidationTest < Test::Unit::TestCase end end + + def test_training_test_validation + + @@vs = [] + @@data.each do |data| + if data[:type]==:training_test_validation + puts "test_training_test_validation "+data[:info].to_s + p = { + :training_dataset_uri => data[:train_data], + :test_dataset_uri => data[:test_data], + :algorithm_uri => File.join(CONFIG[:services]["opentox-algorithm"],"lazar"), + :algorithm_params => "feature_generation_uri="+File.join(CONFIG[:services]["opentox-algorithm"],"fminer/bbrc"), + :prediction_feature => data[:feat]} + t = OpenTox::SubTask.new(nil,0,1) + def t.progress(pct) + if !defined?@last_msg or @last_msg+10 model} ) + assert v_list.size==1 and v_list.include?(v.uri) + puts v.uri unless @@delete + @@vs << v + end + end + end + + def test_validation_report #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/48", @@subjectid) @@ -314,28 +366,30 @@ class ValidationTest < Test::Unit::TestCase end end - def test_qmrf_report + if @@qmrf_test + def test_qmrf_report #@@cv = OpenTox::Crossvalidation.find("http://local-ot/validation/crossvalidation/13", @@subjectid) - - @@qmrfReports = [] - @@cvs.each do |cv| - puts "test_qmrf_report" - assert defined?cv,"no crossvalidation defined" - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => cv.metadata[OT.dataset], :subjectid => @@subjectid}).to_s - assert model_uri.uri? -# validations = cv.metadata[OT.validation] -# assert_kind_of Array,validations -# assert validations.size==cv.metadata[OT.numFolds].to_i,validations.size.to_s+"!="+cv.metadata[OT.numFolds].to_s -# val = OpenTox::Validation.find(validations[0], @@subjectid) -# model_uri = val.metadata[OT.model] - model = OpenTox::Model::Generic.find(model_uri, @@subjectid) - assert model!=nil - #assert_rest_call_error OpenTox::NotFoundError do - # OpenTox::QMRFReport.find_for_model(model_uri, @@subjectid) - #end - qmrfReport = OpenTox::QMRFReport.create(model_uri, @@subjectid) - puts qmrfReport.uri unless @@delete - @@qmrfReports << qmrfReport + + @@qmrfReports = [] + @@cvs.each do |cv| + puts "test_qmrf_report" + assert defined?cv,"no crossvalidation defined" + model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => cv.metadata[OT.dataset], :subjectid => @@subjectid}).to_s + assert model_uri.uri? + # validations = cv.metadata[OT.validation] + # assert_kind_of Array,validations + # assert validations.size==cv.metadata[OT.numFolds].to_i,validations.size.to_s+"!="+cv.metadata[OT.numFolds].to_s + # val = OpenTox::Validation.find(validations[0], @@subjectid) + # model_uri = val.metadata[OT.model] + model = OpenTox::Model::Generic.find(model_uri, @@subjectid) + assert model!=nil + #assert_rest_call_error OpenTox::NotFoundError do + # OpenTox::QMRFReport.find_for_model(model_uri, @@subjectid) + #end + qmrfReport = OpenTox::QMRFReport.create(model_uri, @@subjectid) + puts qmrfReport.uri unless @@delete + @@qmrfReports << qmrfReport + end end end -- cgit v1.2.3 From 32c1c66a7366bf5d17b07192b872ea008b8c8789 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Mon, 6 Jun 2011 11:33:00 +0200 Subject: fix error in validation test --- validation.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/validation.rb b/validation.rb index 9723a33..ff0725d 100644 --- a/validation.rb +++ b/validation.rb @@ -374,7 +374,13 @@ class ValidationTest < Test::Unit::TestCase @@cvs.each do |cv| puts "test_qmrf_report" assert defined?cv,"no crossvalidation defined" - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => cv.metadata[OT.dataset], :subjectid => @@subjectid}).to_s + assert cv.metadata[OT.validation].is_a?(Array) + assert cv.metadata[OT.validation].first.uri? + validation = OpenTox::Validation.find(cv.metadata[OT.validation].first) + prediction_feature_uri = validation.metadata[OT.predictionFeature] + assert prediction_feature_uri.uri? + model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => cv.metadata[OT.dataset], :prediction_feature => prediction_feature_uri, + :subjectid => @@subjectid}).to_s assert model_uri.uri? # validations = cv.metadata[OT.validation] # assert_kind_of Array,validations -- cgit v1.2.3 From e0dccc2e19ad7deefe996e4be1f823edf563f043 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Tue, 7 Jun 2011 14:51:21 +0200 Subject: initial headless browser tests --- all.rb | 1 + toxcreate.rb | 96 ++++++++++++++++++++++++++++++++++++++++-------------------- 2 files changed, 65 insertions(+), 32 deletions(-) diff --git a/all.rb b/all.rb index 850a309..1d3c570 100644 --- a/all.rb +++ b/all.rb @@ -11,3 +11,4 @@ require './algorithm.rb' require './fminer.rb' require './lazar.rb' require './validation.rb' +require './toxcreate.rb' diff --git a/toxcreate.rb b/toxcreate.rb index 5a995e2..c6b38d9 100644 --- a/toxcreate.rb +++ b/toxcreate.rb @@ -2,54 +2,84 @@ require 'rubygems' require "rubygems" require 'opentox-ruby' require 'test/unit' -require 'watir-webdriver' +require 'akephalos' +require 'capybara/dsl' +Capybara.default_driver = :akephalos +#Capybara.default_driver = :selenium # use this for visual inspection +Capybara.run_server = false +Capybara.default_wait_time = 600 + + class ToxCreateTest < Test::Unit::TestCase + include Capybara + def setup - @browser = Watir::Browser.new :firefox @user = "test_ch" @password = "test_ch" end - + + def teardown + end + =begin def test_login - @browser.goto File.join(CONFIG[:services]["opentox-toxcreate"], "login") - @browser.button(:value, "Login").click + visit File.join(CONFIG[:services]["opentox-toxcreate"], "login") + click_on "Login" puts "Login without credentials" - assert @browser.text.include? "Please enter username and password." - @browser.text_field(:id, "username").set(@user) - @browser.text_field(:id, "password").set(@password + "nonsense") - @browser.button(:value, "Login").click + assert page.has_content? "Please enter username and password." + fill_in('Username', :with => @user) + fill_in('Password', :with => @password + "nonsense") + click_on "Login" puts "Login with wrong password" - assert @browser.text.include? "Login failed. Please try again." - @browser.text_field(:id, "username").set(@user) - @browser.text_field(:id, "password").set(@password) - @browser.button(:value, "Login").click - puts "Login as user #{@user}" - assert @browser.text.include? "Welcome #{@user}!" - @browser.goto File.join(CONFIG[:services]["opentox-toxcreate"], "login") - @browser.button(:value, "Login as guest").click + assert page.has_content? "Login failed. Please try again." + fill_in('Username', :with => @user) + fill_in('Password', :with => @password) + click_on "Login" + assert page.has_content? "Welcome #{@user}!" + visit File.join(CONFIG[:services]["opentox-toxcreate"], "login") + click_on "Login as guest" puts "Login as user guest" - assert @browser.text.include? "Welcome guest!" - @browser.close + assert page.has_content? "Welcome guest!" end - def teardown - @browser.close + def test_predict # works only with selenium + visit CONFIG[:services]["opentox-toxcreate"] + click_on "Predict" + fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" + check "hamster_carcinogenicity" + click_button "Predict" + assert page.has_content? "false" + assert page.has_content? "0.294" + click_on "Details" + assert page.has_content? "0.875" end +=end - - def test_toxcreate - login(@browser, @user, @password) - @browser.goto CONFIG[:services]["opentox-toxcreate"] - @browser.file_field(:id, "file").set(`pwd`.chomp+"/data/hamster_carcinogenicity.csv") - @browser.button(:value, "Create model").click - # wait until validation is completed - # check results (links, reports, results) - puts @browser.url + def test_toxcreate # works only with akephalos + #login(@browser, @user, @password) + visit CONFIG[:services]["opentox-toxcreate"] + assert page.has_content?('Upload training data') + attach_file('file', "./data/hamster_carcinogenicity.csv") + click_on "Create model" + assert first("h2").has_content? 'hamster_carcinogenicity' + time = 0 + while first(".model_status").has_no_content?("Completed") and time < 120 do + sleep 5 + time +=5 + end + assert first(".model_status").has_content?("Completed") + #click_on "Predict" + #fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" + #check "hamster_carcinogenicity" + #click_button "Predict" + #assert page.has_content? "false" + #assert page.has_content? "0.294" + #click_on "Details" + #assert page.has_content? "0.875" end -=end + =begin def test_multi_cell_call login(@browser, @user, @password) @@ -83,9 +113,11 @@ class ToxCreateTest < Test::Unit::TestCase =end end +=begin def login(browser, user, password) browser.goto File.join(CONFIG[:services]["opentox-toxcreate"], "login") browser.text_field(:id, "username").set(user) browser.text_field(:id, "password").set(password) browser.button(:value, "Login").click -end \ No newline at end of file +end +=end -- cgit v1.2.3 From ec9aaf16bff077231e7fe3ff300492df3df432e2 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 17 Jun 2011 12:20:06 +0200 Subject: dumpfiles implemented --- fminer.rb | 55 +++++++++++++++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/fminer.rb b/fminer.rb index 93644c4..87ea4a4 100644 --- a/fminer.rb +++ b/fminer.rb @@ -5,47 +5,58 @@ require 'validate-owl.rb' class FminerTest < Test::Unit::TestCase + def setup + @dump_dir = FileUtils.mkdir_p File.join(File.dirname(__FILE__),"dump",File.basename(__FILE__,".rb")) + FileUtils.mkdir_p File.join(File.dirname(__FILE__),"reference",File.basename(__FILE__,".rb")) + end + + def cleanup # executed only when assertions succeed (teardown is called even when assertions fail) + FileUtils.cp @dumpfile, @dumpfile.sub(/dump/,"reference") + FileUtils.rm @dumpfile + @dataset.delete(@@subjectid) + end + + def dump(method) + @dataset = OpenTox::Dataset.find @dataset_uri, @@subjectid + @dumpfile = File.join(@dump_dir,method.to_s)+".yaml" + File.open(@dumpfile,"w+"){|f| f.puts @dataset.to_yaml} + end + def test_bbrc feature = @@classification_training_dataset.features.keys.first - dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s - d =OpenTox::Dataset.new dataset_uri, @@subjectid - d.load_features(@@subjectid) - assert_equal 52, d.features.size - d.delete(@@subjectid) + @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s + dump __method__ + assert_equal 52, @dataset.features.size + cleanup end def test_regression_bbrc feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" - dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s - d =OpenTox::Dataset.new dataset_uri, @@subjectid - d.load_features(@@subjectid) - #assert_equal 185, d.features.size - assert_equal 219, d.features.size - d.delete(@@subjectid) + @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s + dump __method__ + assert_equal 219, @dataset.features.size + cleanup end def test_last feature = @@classification_training_dataset.features.keys.first - dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s - d =OpenTox::Dataset.new dataset_uri, @@subjectid - d.load_features(@@subjectid) - assert_equal 23, d.features.size - d.delete(@@subjectid) + @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s + dump __method__ + assert_equal 23, @dataset.features.size + cleanup end def test_bbrc_rest_parameters feature = @@classification_training_dataset.features.keys.first - #call = "curl -X POST #{File.join CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"} -d \"dataset_uri=#{CGI.escape @@classification_training_dataset.uri}\" -d \"prediction_feature=#{CGI.escape feature}\" -d \"backbone=true\" -d \"min_frequency=2\"" - dataset_uri = OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"),{ + @dataset_uri = OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"),{ "dataset_uri" => @@classification_training_dataset.uri, "prediction_feature" => feature, "backbone" => true, "min_frequency" => 2, :subjectid => @@subjectid }) - d =OpenTox::Dataset.new dataset_uri, @@subjectid - d.load_features(@@subjectid) - assert_equal 52, d.features.size - + dump __method__ + assert_equal 52, @dataset.features.size + cleanup end # Deactivated by AM because of efficiency problems (does not return) -- cgit v1.2.3 From 983ad5cd9d1bc9f2ccd931b7d75fbb8b95e5f873 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 17 Jun 2011 15:21:14 +0200 Subject: lazar dumpfiles implemented --- fminer.rb | 19 +++-- lazar.rb | 211 +++++++++++++++++++++++++++----------------------------- validate-owl.rb | 6 +- 3 files changed, 117 insertions(+), 119 deletions(-) diff --git a/fminer.rb b/fminer.rb index 87ea4a4..22fc945 100644 --- a/fminer.rb +++ b/fminer.rb @@ -16,16 +16,16 @@ class FminerTest < Test::Unit::TestCase @dataset.delete(@@subjectid) end - def dump(method) + def dump @dataset = OpenTox::Dataset.find @dataset_uri, @@subjectid - @dumpfile = File.join(@dump_dir,method.to_s)+".yaml" + @dumpfile = File.join(@dump_dir,caller[0][/`.*'/][1..-2])+".yaml" File.open(@dumpfile,"w+"){|f| f.puts @dataset.to_yaml} end def test_bbrc feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s - dump __method__ + dump assert_equal 52, @dataset.features.size cleanup end @@ -33,7 +33,7 @@ class FminerTest < Test::Unit::TestCase def test_regression_bbrc feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s - dump __method__ + dump assert_equal 219, @dataset.features.size cleanup end @@ -41,7 +41,7 @@ class FminerTest < Test::Unit::TestCase def test_last feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s - dump __method__ + dump assert_equal 23, @dataset.features.size cleanup end @@ -54,7 +54,7 @@ class FminerTest < Test::Unit::TestCase "backbone" => true, "min_frequency" => 2, :subjectid => @@subjectid }) - dump __method__ + dump assert_equal 52, @dataset.features.size cleanup end @@ -62,11 +62,10 @@ class FminerTest < Test::Unit::TestCase # Deactivated by AM because of efficiency problems (does not return) # def test_regression_last # feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" -# dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s -# d =OpenTox::Dataset.new dataset_uri, @@subjectid -# d.load_features(@@subjectid) +# @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s +# dump # assert_equal 4, d.features.size -# d.delete(@@subjectid) +# cleanup # end end diff --git a/lazar.rb b/lazar.rb index b60794c..ea41f98 100644 --- a/lazar.rb +++ b/lazar.rb @@ -13,143 +13,138 @@ class LazarTest < Test::Unit::TestCase def setup @predictions = [] - @models = [] + @compounds = [] + @files = [] + @dump_dir = FileUtils.mkdir_p File.join(File.dirname(__FILE__),"dump",File.basename(__FILE__,".rb")) + FileUtils.mkdir_p File.join(File.dirname(__FILE__),"reference",File.basename(__FILE__,".rb")) end - def teardown - @predictions.each {|p| p.delete(@@subjectid)} - @models.each {|m| m.delete(@@subjectid)} + def dump(object,file) + @files << file + FileUtils.mkdir_p File.dirname(file) + File.open(file,"w+"){|f| f.puts object.to_yaml} end -=begin -=end - def test_create_regression_model - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@regression_training_dataset.uri, :subjectid => @@subjectid}).to_s - #puts model_uri - validate_owl model_uri,@@subjectid - lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid - @models << lazar - compound = OpenTox::Compound.from_smiles("c1ccccc1NN") - prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid).to_s + def create_model(params) + params[:subjectid] = @@subjectid + model_uri = OpenTox::Algorithm::Lazar.new.run(params).to_s + @model = OpenTox::Model::Lazar.find model_uri, @@subjectid + dump @model, File.join(@dump_dir,caller[0][/`.*'/][1..-2],"model")+".yaml" + end + + def predict_compound(compound) + @compounds << compound + prediction_uri = @model.run(:compound_uri => compound.uri, :subjectid => @@subjectid) prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound).round_to(3),0.378.round_to(3) - assert_equal prediction.confidence(compound).round_to(3), 0.276.round_to(3) - #assert_equal prediction.value(compound).round_to(4), 0.2847.round_to(4) - #assert_equal prediction.confidence(compound).round_to(4), 0.3223.round_to(4) - assert_equal prediction.neighbors(compound).size, 61 + dump prediction, File.join(@dump_dir,caller[0][/`.*'/][1..-2],"compound_prediction")+@compounds.size.to_s+".yaml" end - def test_create_regression_prop_model - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@regression_training_dataset.uri, :subjectid => @@subjectid, :local_svm_kernel => "propositionalized"}).to_s - #puts model_uri - validate_owl model_uri,@@subjectid - lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid - @models << lazar - assert_equal 219, lazar.features.size - compound = OpenTox::Compound.from_smiles("c1ccccc1NN") - prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid).to_s + def predict_dataset(dataset) + prediction_uri = @model.run(:dataset_uri => dataset.uri, :subjectid => @@subjectid) prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction - assert_equal prediction.value(compound).round_to(1),0.1.round_to(1) - assert_equal prediction.confidence(compound).round_to(3), 0.276.round_to(3) - #assert_equal prediction.value(compound).round_to(4), 0.2847.round_to(4) - #assert_equal prediction.confidence(compound).round_to(4), 0.3223.round_to(4) - assert_equal prediction.neighbors(compound).size, 61 + dump prediction, File.join(@dump_dir,caller[0][/`.*'/][1..-2],"dataset_prediction")+".yaml" end - def test_classification_model + def cleanup # executed only when assertions succeed (teardown is called even when assertions fail) + validate_owl @model.uri + @files.each do |f| + reference = f.sub(/dump/,"reference") + FileUtils.mkdir_p File.dirname(reference) + FileUtils.cp f, reference + FileUtils.rm f + end + @predictions.each do |dataset| + validate_owl @model.uri + dataset.delete(@@subjectid) + end + @model.delete(@@subjectid) + end - # create model - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri, :subjectid => @@subjectid}).to_s - validate_owl model_uri,@@subjectid - lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid - @models << lazar - assert_equal lazar.features.size, 52 +=begin +=end + def test_create_regression_model + create_model :dataset_uri => @@regression_training_dataset.uri + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 0.4.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + assert_equal 0.276.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 61, @predictions.first.neighbors(@compounds.first).size + cleanup + end - # single prediction - compound = OpenTox::Compound.from_smiles("c1ccccc1NN") - prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) - prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) - @predictions << prediction - #puts prediction_uri - assert_equal prediction.value(compound), "false" - assert_equal prediction.confidence(compound).round_to(4), 0.3067.round_to(4) - assert_equal prediction.neighbors(compound).size, 14 + def test_create_regression_prop_model + create_model :dataset_uri => @@regression_training_dataset.uri, :local_svm_kernel => "propositionalized" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 0.4.round_to(1), @predictions.first.value(@compounds.first).round_to(1) + assert_equal 0.276.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 61, @predictions.first.neighbors(@compounds.first).size + assert_equal 219, @model.features.size + cleanup + end + def test_classification_model + create_model :dataset_uri => @@classification_training_dataset.uri + # single prediction + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") # dataset activity - compound = OpenTox::Compound.from_smiles("CNN") - prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) - prediction = OpenTox::LazarPrediction.find prediction_uri, @@subjectid - @predictions << prediction - assert !prediction.measured_activities(compound).empty? - assert_equal prediction.measured_activities(compound).first.to_s, "true" - assert prediction.value(compound).nil? - + predict_compound OpenTox::Compound.from_smiles("CNN") # dataset prediction - test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri, :subjectid => @@subjectid), @@subjectid - @predictions << prediction - assert_equal prediction.compounds.size, 4 - compound = OpenTox::Compound.from_smiles "CC(=Nc1ccc2c(c1)Cc1ccccc21)O" - assert_equal prediction.value(compound), nil - assert_equal prediction.measured_activities(compound).first.to_s, "true" + predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) + # assertions + # single prediction + assert_equal false, @predictions[0].value(@compounds[0]) + assert_equal 0.3067.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 14, @predictions[0].neighbors(@compounds[0]).size + # dataset activity + assert !@predictions[1].measured_activities(@compounds[1]).empty? + assert_equal "true", @predictions[1].measured_activities(@compounds[1]).first.to_s + assert @predictions[1].value(@compounds[1]).nil? + # dataset prediction + c = OpenTox::Compound.from_smiles("CC(=Nc1ccc2c(c1)Cc1ccccc21)O") + assert_equal nil, @predictions[2].value(c) + assert_equal "true", @predictions[2].measured_activities(c).first.to_s + c = OpenTox::Compound.new("http://ot-dev.in-silico.ch/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)") + assert_equal false, @predictions[2].value(c) + # model + assert_equal 52, @model.features.size + cleanup end def test_classification_svm_model - # create model - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri, :subjectid => @@subjectid, :prediction_algorithm => "local_svm_classification"}).to_s - lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid - @models << lazar - assert_equal lazar.features.size, 52 + create_model :dataset_uri => @@classification_training_dataset.uri, :prediction_algorithm => "local_svm_classification" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - # single prediction - compound = OpenTox::Compound.from_smiles("c1ccccc1NN") - prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) - prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) - @predictions << prediction - assert_equal prediction.value(compound), "false" - assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) - assert_equal prediction.neighbors(compound).size, 14 + assert_equal false, @predictions[0].value(@compounds[0]) + assert_equal 0.3067.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 14, @predictions[0].neighbors(@compounds[0]).size - # dataset prediction - test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri, :subjectid => @@subjectid), @@subjectid - @predictions << prediction - assert_equal prediction.compounds.size, 4 - compound = OpenTox::Compound.from_smiles "CC(=Nc1ccc2c(c1)Cc1ccccc21)O" - assert_equal prediction.value(compound), nil - assert_equal prediction.measured_activities(compound).first, true + c = OpenTox::Compound.new("http://ot-dev.in-silico.ch/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)") + assert_equal 4, @predictions[1].compounds.size + assert_equal false, @predictions[1].value(c) + + assert_equal 52, @model.features.size + cleanup end def test_classification_svm_prop_model + create_model :dataset_uri => @@classification_training_dataset.uri, :prediction_algorithm => "local_svm_classification", :local_svm_kernel => "propositionalized" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) + + assert_equal false, @predictions[0].value(@compounds[0]) + assert_equal 0.3067.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 14, @predictions[0].neighbors(@compounds[0]).size - # create model - model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri, :subjectid => @@subjectid, :prediction_algorithm => "local_svm_classification", :local_svm_kernel => "propositionalized"}).to_s - lazar = OpenTox::Model::Lazar.find model_uri, @@subjectid - @models << lazar - assert_equal lazar.features.size, 52 - - # single prediction - compound = OpenTox::Compound.from_smiles("c1ccccc1NN") - prediction_uri = lazar.run(:compound_uri => compound.uri, :subjectid => @@subjectid) - prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) - @predictions << prediction - assert_equal prediction.value(compound), "false" - assert_equal prediction.confidence(compound).round_to(4), 0.4131.round_to(4) - assert_equal prediction.neighbors(compound).size, 14 - - # dataset prediction - test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri, :subjectid => @@subjectid), @@subjectid - @predictions << prediction - assert_equal prediction.compounds.size, 4 - compound = OpenTox::Compound.from_smiles "CC(=Nc1ccc2c(c1)Cc1ccccc21)O" - assert_equal prediction.value(compound), nil - assert_equal prediction.measured_activities(compound).first, true + c = OpenTox::Compound.new("http://ot-dev.in-silico.ch/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)") + assert_equal 4, @predictions[1].compounds.size + assert_equal false, @predictions[1].value(c) + assert_equal 52, @model.features.size + cleanup end =begin diff --git a/validate-owl.rb b/validate-owl.rb index e219d58..2152e7d 100644 --- a/validate-owl.rb +++ b/validate-owl.rb @@ -2,7 +2,11 @@ def validate_owl(uri, subjectid=nil) if validator_available? owl = OpenTox::RestClientWrapper.get(uri,{:accept => "application/rdf+xml",:subjectid => subjectid}, nil, false) html = OpenTox::RestClientWrapper.post("http://www.mygrid.org.uk/OWL/Validator",{:rdf => owl, :level => "DL",:subjectid => subjectid}) - assert_match(/YES/,html) + # assert_match(/YES/,html) + # avoid verbose html output if validation fails + owl_dl = false + owl_dl = true if html =~ /YES/ + assert_equal true, owl_dl, "Invalid OWL-DL: #{uri}" else puts "http://www.mygrid.org.uk/OWL/Validator offline" end -- cgit v1.2.3 From 2bb7e2b08a035b7419e5b280b2d93e1e4468c35d Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 23 Jun 2011 13:16:33 +0000 Subject: lazar predictions fixed --- data/multicolumn.csv | 2 +- fminer.rb | 12 ++++++++---- lazar.rb | 55 +++++++++++++++++++++++++++------------------------- validation.rb | 3 ++- 4 files changed, 40 insertions(+), 32 deletions(-) diff --git a/data/multicolumn.csv b/data/multicolumn.csv index 551429e..2fa9a1c 100644 --- a/data/multicolumn.csv +++ b/data/multicolumn.csv @@ -1,5 +1,5 @@ SMILES, Hamster Carcinogenicity, numeric feature, classification, mixed, string -CC=O , 1, 1, true , true , "test" +c1ccccc1NN , 1, 1, true , true , "test" C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O , 1, 2, false, 7.5 , "test" O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1, 1, 3, true , 5 , "test" C1(N=CNN=1)N , 0, 4, false, false, "test" diff --git a/fminer.rb b/fminer.rb index 22fc945..1dbd1b6 100644 --- a/fminer.rb +++ b/fminer.rb @@ -26,7 +26,8 @@ class FminerTest < Test::Unit::TestCase feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s dump - assert_equal 52, @dataset.features.size + assert_equal 41, @dataset.features.size # 32 bit + #assert_equal 52, @dataset.features.size cleanup end @@ -34,7 +35,8 @@ class FminerTest < Test::Unit::TestCase feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s dump - assert_equal 219, @dataset.features.size + assert_equal 207, @dataset.features.size # 32 bit + #assert_equal 219, @dataset.features.size cleanup end @@ -42,7 +44,8 @@ class FminerTest < Test::Unit::TestCase feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s dump - assert_equal 23, @dataset.features.size + #assert_equal 23, @dataset.features.size + assert_equal 21, @dataset.features.size # 32 bit cleanup end @@ -55,7 +58,8 @@ class FminerTest < Test::Unit::TestCase "min_frequency" => 2, :subjectid => @@subjectid }) dump - assert_equal 52, @dataset.features.size + assert_equal 41, @dataset.features.size # 32 bit + #assert_equal 52, @dataset.features.size cleanup end diff --git a/lazar.rb b/lazar.rb index ea41f98..f4e7e44 100644 --- a/lazar.rb +++ b/lazar.rb @@ -41,7 +41,7 @@ class LazarTest < Test::Unit::TestCase end def predict_dataset(dataset) - prediction_uri = @model.run(:dataset_uri => dataset.uri, :subjectid => @@subjectid) + prediction_uri = @model.run(:dataset_uri => dataset.uri, :subjectid => @@subjectid) prediction = OpenTox::LazarPrediction.find(prediction_uri, @@subjectid) @predictions << prediction dump prediction, File.join(@dump_dir,caller[0][/`.*'/][1..-2],"dataset_prediction")+".yaml" @@ -67,24 +67,25 @@ class LazarTest < Test::Unit::TestCase def test_create_regression_model create_model :dataset_uri => @@regression_training_dataset.uri predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.4.round_to(3), @predictions.first.value(@compounds.first).round_to(3) - assert_equal 0.276.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 61, @predictions.first.neighbors(@compounds.first).size + assert_equal 0.541.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + assert_equal 0.285.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 58, @predictions.first.neighbors(@compounds.first).size cleanup end def test_create_regression_prop_model create_model :dataset_uri => @@regression_training_dataset.uri, :local_svm_kernel => "propositionalized" predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.4.round_to(1), @predictions.first.value(@compounds.first).round_to(1) - assert_equal 0.276.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 61, @predictions.first.neighbors(@compounds.first).size - assert_equal 219, @model.features.size + assert_equal 0.1.round_to(1), @predictions.first.value(@compounds.first).round_to(1) + assert_equal 0.285.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 58, @predictions.first.neighbors(@compounds.first).size + assert_equal 207, @model.features.size cleanup end def test_classification_model create_model :dataset_uri => @@classification_training_dataset.uri + puts @model.uri # single prediction predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") # dataset activity @@ -93,9 +94,9 @@ class LazarTest < Test::Unit::TestCase predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) # assertions # single prediction - assert_equal false, @predictions[0].value(@compounds[0]) - assert_equal 0.3067.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) - assert_equal 14, @predictions[0].neighbors(@compounds[0]).size + assert_equal "false", @predictions[0].value(@compounds[0]) + assert_equal 0.2938.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 16, @predictions[0].neighbors(@compounds[0]).size # dataset activity assert !@predictions[1].measured_activities(@compounds[1]).empty? assert_equal "true", @predictions[1].measured_activities(@compounds[1]).first.to_s @@ -104,10 +105,11 @@ class LazarTest < Test::Unit::TestCase c = OpenTox::Compound.from_smiles("CC(=Nc1ccc2c(c1)Cc1ccccc21)O") assert_equal nil, @predictions[2].value(c) assert_equal "true", @predictions[2].measured_activities(c).first.to_s - c = OpenTox::Compound.new("http://ot-dev.in-silico.ch/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)") - assert_equal false, @predictions[2].value(c) + c = OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal "false", @predictions[2].value(c) + assert_equal 0.2938.round_to(4) , @predictions[2].confidence(c).round_to(4) # model - assert_equal 52, @model.features.size + assert_equal 41, @model.features.size cleanup end @@ -117,15 +119,15 @@ class LazarTest < Test::Unit::TestCase predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - assert_equal false, @predictions[0].value(@compounds[0]) - assert_equal 0.3067.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) - assert_equal 14, @predictions[0].neighbors(@compounds[0]).size + assert_equal "false", @predictions[0].value(@compounds[0]) + assert_equal 0.3952.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 16, @predictions[0].neighbors(@compounds[0]).size - c = OpenTox::Compound.new("http://ot-dev.in-silico.ch/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)") + c = OpenTox::Compound.from_smiles("c1ccccc1NN") assert_equal 4, @predictions[1].compounds.size - assert_equal false, @predictions[1].value(c) + assert_equal "false", @predictions[1].value(c) - assert_equal 52, @model.features.size + assert_equal 41, @model.features.size cleanup end @@ -135,15 +137,16 @@ class LazarTest < Test::Unit::TestCase predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - assert_equal false, @predictions[0].value(@compounds[0]) - assert_equal 0.3067.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) - assert_equal 14, @predictions[0].neighbors(@compounds[0]).size + assert_equal "false", @predictions[0].value(@compounds[0]) + #assert_equal 0.2938.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 0.3952.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 16, @predictions[0].neighbors(@compounds[0]).size - c = OpenTox::Compound.new("http://ot-dev.in-silico.ch/compound/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)") + c = OpenTox::Compound.from_smiles("c1ccccc1NN") assert_equal 4, @predictions[1].compounds.size - assert_equal false, @predictions[1].value(c) + assert_equal "false", @predictions[1].value(c) - assert_equal 52, @model.features.size + assert_equal 41, @model.features.size cleanup end diff --git a/validation.rb b/validation.rb index ff0725d..cf2a3bd 100644 --- a/validation.rb +++ b/validation.rb @@ -24,7 +24,8 @@ end class ValidationTest < Test::Unit::TestCase @@delete = true - @@feature_types = ["bbrc", "last"] + #@@feature_types = ["bbrc", "last"] + @@feature_types = ["bbrc"] @@qmrf_test = true @@data = [] @@data << { :type => :crossvalidation, -- cgit v1.2.3 From 9d3629c8dce831bd5dfb2fd50d778161e666c13e Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 23 Jun 2011 13:18:30 +0000 Subject: reference directory excluded --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 023a583..03b0f63 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .yardoc -dump.rdb +dump +reference bak -- cgit v1.2.3 From fa269567ccd7c2a2803b6e61c3d8cef32092d435 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Mon, 27 Jun 2011 15:56:16 +0200 Subject: Added Fminer tests for hit count --- fminer.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/fminer.rb b/fminer.rb index 1dbd1b6..2adf5e3 100644 --- a/fminer.rb +++ b/fminer.rb @@ -56,10 +56,26 @@ class FminerTest < Test::Unit::TestCase "prediction_feature" => feature, "backbone" => true, "min_frequency" => 2, + "nr_hits" => true, :subjectid => @@subjectid }) dump assert_equal 41, @dataset.features.size # 32 bit #assert_equal 52, @dataset.features.size + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H').size > 0 + e.each { |p,h| + if p.to_s.scan('39').size>0 + assert_equal 6, h[0] + end + if p.to_s.scan('18').size>0 + assert_equal 5, h[0] + end + if p.to_s.scan('38').size>0 + assert_equal 14, h[0] + end + } + end + } cleanup end -- cgit v1.2.3 From 7ec723afbb2367ae45690e58a7e9255918f51901 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 29 Jun 2011 07:16:10 +0200 Subject: Detailed Fminer tests --- fminer.rb | 304 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 290 insertions(+), 14 deletions(-) diff --git a/fminer.rb b/fminer.rb index 2adf5e3..0a30962 100644 --- a/fminer.rb +++ b/fminer.rb @@ -3,6 +3,12 @@ require 'opentox-ruby' require 'test/unit' require 'validate-owl.rb' +class Float + def round_to(x) + (self * 10**x).round.to_f / 10**x + end +end + class FminerTest < Test::Unit::TestCase def setup @@ -28,6 +34,33 @@ class FminerTest < Test::Unit::TestCase dump assert_equal 41, @dataset.features.size # 32 bit #assert_equal 52, @dataset.features.size + # assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3').size > 0 + e.each { |p,h| + if p.to_s.scan('bbrc/40').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/29').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/18').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/31').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "false" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.97 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]-[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#7&A]" + end + } cleanup end @@ -37,55 +70,298 @@ class FminerTest < Test::Unit::TestCase dump assert_equal 207, @dataset.features.size # 32 bit #assert_equal 219, @dataset.features.size + + # assert no hit counts present + count = 0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C5H10N2O2S/c1-4(10-3)7-9-5(8)6-2/h1-3H3,(H,6,8)').size > 0 + e.each { |p,h| + if p.to_s.scan('bbrc/107').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/57').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/158').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/188').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.0 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a]:[#8&a]:[#6&a]:[#6&a]" + end + } + cleanup end def test_last + feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s dump #assert_equal 23, @dataset.features.size assert_equal 21, @dataset.features.size # 32 bit + + # assert no hit counts present + count = 0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2').size > 0 + e.each { |p,h| + if p.to_s.scan('last/11').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/5').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/13').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/last/3').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "true" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#6&A]-[#6&A]" + end + } cleanup end - def test_bbrc_rest_parameters + + def test_regression_last + feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" + @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, + :min_frequency => 40, + :subjectid => @@subjectid}).to_s + dump + assert_equal 8, @dataset.features.size + + + # assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C9H14O3/c1-7(2)9(10)12-6-8-4-3-5-11-8/h8H,1,3-6H2,2H3').size > 0 + e.each { |p,h| + if p.to_s.scan('last/2').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/3').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/7').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/last/3').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "deactivating" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.00 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]-[#6&A](-[#6&A])-[#6&A]" + end + } + cleanup + end + + + + def test_bbrc_rest_parameters_nr_hits feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"),{ "dataset_uri" => @@classification_training_dataset.uri, "prediction_feature" => feature, - "backbone" => true, - "min_frequency" => 2, "nr_hits" => true, :subjectid => @@subjectid }) dump assert_equal 41, @dataset.features.size # 32 bit #assert_equal 52, @dataset.features.size + + # assert hit counts present @dataset.data_entries.each { |c,e| if c.to_s.scan('InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H').size > 0 e.each { |p,h| - if p.to_s.scan('39').size>0 + if p.to_s.scan('bbrc/39').size>0 assert_equal 6, h[0] end - if p.to_s.scan('18').size>0 + if p.to_s.scan('bbrc/18').size>0 assert_equal 5, h[0] end - if p.to_s.scan('38').size>0 + if p.to_s.scan('bbrc/38').size>0 assert_equal 14, h[0] end } end } + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/31').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "false" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.97 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]-[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#7&A]" + end + } + + cleanup + end + + def test_bbrc_rest_parameters_bb_false + feature = @@classification_training_dataset.features.keys.first + @dataset_uri = OpenTox::RestClientWrapper.post(File.join(CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"),{ + "dataset_uri" => @@classification_training_dataset.uri, + "prediction_feature" => feature, + "backbone" => false, + :subjectid => @@subjectid }) + dump + assert_equal 139, @dataset.features.size # 32 bit + #assert_equal 52, @dataset.features.size + + # assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3').size > 0 + e.each { |p,h| + if p.to_s.scan('bbrc/113').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/99').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/77').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/31').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "false" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]-[#6&A]-[#7&A]-[#7&A]=[#8&A]" + end + } + cleanup end -# Deactivated by AM because of efficiency problems (does not return) -# def test_regression_last -# feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" -# @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s -# dump -# assert_equal 4, d.features.size -# cleanup -# end + def test_bbrc_multinomial + feature = @@multinomial_training_dataset.features.keys.first + @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@multinomial_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s + dump + assert_equal 152, @dataset.features.size # 32 bit + #assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C10H7NO2/c12-11(13)10-7-3-5-8-4-1-2-6-9(8)10/h1-7H').size > 0 + e.each { |p,h| + if p.to_s.scan('bbrc/37').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/38').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('bbrc/39').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/0').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "1" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.00 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]-[#6&A](=[#6&A])(-[#6&A])" + end + } + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/92').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#6&a])(:[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#16&A])" + end + } + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/42').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "0" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#7&a]:[#6&a])(:[#6&a]:[#6&a])" + end + } + cleanup + end + + def test_last_multinomial + feature = @@multinomial_training_dataset.features.keys.first + @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@multinomial_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s + dump + assert_equal 138, @dataset.features.size # 32 bit + + #assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C7H6N2O4/c8-6-3-4(9(12)13)1-2-5(6)7(10)11/h1-3H,8H2,(H,10,11)').size > 0 + e.each { |p,h| + if p.to_s.scan('last/127').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/54').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/120').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/last/54').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "0" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A;$([#7&A](=[#8&A])=[#8&A]),$([#7&A](-[#6&a])=[#8&A])](~*)=[#8&A]" + end + } + @dataset.features.each { |c,e| + if c.to_s.scan('feature/last/48').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "1" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]=[#6&A](-[#6&A])-[#6&A]" + end + } + @dataset.features.each { |c,e| + if c.to_s.scan('feature/bbrc/76').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.0 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A]-[#6&a]:[#6&a]:[#6&a](-[#16&A;$([#16&A](-,=[#8&A])-[#6&a]),$([#16&A](=[#8&A])-[#6&a])](~*)):[#6&a]:[#6&a;$([#6&a](:[#6&a])(:[#6&a]):[#6&a]),$([#6&a](:[#6&a])(:[#6&a]):[#6&a])](~*)(~*):[#6&a]:[#6&a]" + end + } + cleanup + end end -- cgit v1.2.3 From 795e39d9c1f1096d2c2a66a87353e05fde24432b Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 29 Jun 2011 07:22:45 +0200 Subject: Multinomial test data in Rakefile --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 49b72f8..f183527 100644 --- a/Rakefile +++ b/Rakefile @@ -21,11 +21,13 @@ end task :setup do @@subjectid = OpenTox::Authorization.authenticate(TEST_USER,TEST_PW) @@classification_training_dataset = OpenTox::Dataset.create_from_csv_file("data/hamster_carcinogenicity.csv", @@subjectid) + @@multinomial_training_dataset = OpenTox::Dataset.create_from_csv_file("data/ISSCAN-multi.csv", @@subjectid) @@regression_training_dataset = OpenTox::Dataset.create_from_csv_file("data/EPAFHM.csv", @@subjectid) end task :teardown do @@classification_training_dataset.delete(@@subjectid) + @@multinomial_training_dataset.delete(@@subjectid) @@regression_training_dataset.delete(@@subjectid) OpenTox::Authorization.logout(@@subjectid) end -- cgit v1.2.3 From 6b0575d5accf93a4fc457c7f605777ae20eb7844 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 29 Jun 2011 07:23:28 +0200 Subject: Multinomial test data --- data/ISSCAN-multi.csv | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 data/ISSCAN-multi.csv diff --git a/data/ISSCAN-multi.csv b/data/ISSCAN-multi.csv new file mode 100644 index 0000000..b404683 --- /dev/null +++ b/data/ISSCAN-multi.csv @@ -0,0 +1,59 @@ +SMILES,ISSCAN +CC(CCl)Cl,1 +C(Br)(Br)Br,1 +C=C(C)CCl,1 +O=Cc1ccco1,1 +COC34(C(COC(N)=O)C=1C(=O)C(N)=C(C)C(=O)C=1N4(CC2NC23)),1 +CC(N)Cc1ccccc1.CC(N)Cc1ccccc1,1 +Cc1cc(ccc1(N))C(=C2C=CC(=N)C=C2)c3ccc(N)cc3,1 +Oc1ccc(cc1)c2ccccc2,1 +CC(C)C=O,1 +N#CC(C#N)=Cc1ccccc1Cl,1 +Nc1ccc(cc1(N))[N+](=O)[O-],2 +NC(CCC(=O)NNc1ccc(CO)cc1)C(O)=O,2 +c1ccc2c(c1)nc(s2)SSc4nc3ccccc3s4,2 +C=CC=O,2 +CC(=O)Nc3cccc2Cc1ccccc1c23,2 +Cc1cccc2cccnc12,2 +Cc1ccc2ncccc2(c1),2 +CBr,2 +Nc1cc(ccc1(C(=O)O))[N+](=O)[O-],2 +C1N2CN3CN1CN(C2)C3,2 +O=[N+]([O-])c2cccc1ccccc12,2 +Oc1cccc2cccnc12,2 +O=CC(=C(C(=O)O)Cl)Cl,2 +CC1CN(N=O)C(=O)NC1(=O),2 +O1C2C1C3C4C2C5C3C6(C4(C(C5(C6(Cl)Cl)Cl)Cl)Cl)Cl,2 +OCCNc1ccc(cc1[N+](=O)[O-])N(CCO)CCO,2 +Cc1cc(N)ccc1(N).OS(=O)(=O)O,2 +CC(O)CCl,2 +O=[N+]([O-])C(Cl)(Cl)Cl,2 +Cc1ccc(cc1)S(=O)(=O)NC(=O)NN2CCCCCC2,2 +c1cc2ccc3cccc4ccc(c1)c2c34,2 +CC(=O)Nc1ccc(cc1)C(=O)CCl,2 +FC(F)Cl,2 +CN(N=O)c1ccc(cc1)[N+](=O)[O-],2 +C=CC,2 +Oc4c(cc1cc(ccc1c4(N=Nc2ccc(c3ccccc23)S(=O)(=O)[O-]))S(=O)(=O)[O-])S(=O)(=O)[O-],0 +CC=NN(C)C=O,0 +Nc2ccc(N=Nc1ccccc1)c(N)n2,0 +Cc3cc(C)c(N=Nc1cc(c2ccccc2(c1(O)))S(=O)(=O)[O-])c(c3)S(=O)(=O)[O-],0 +[O-]c1ccccc1c2ccccc2,0 +NNC(N)=O,0 +CNNCc1ccc(cc1)C(=O)NC(C)C,0 +c1cc(c(cc1c2ccc(c(c2Cl)Cl)Cl)Cl)Cl,0 +CCN(Cc1cccc(c1)S(=O)(=O)[O-])c2ccc(cc2)C(=C3C=CC(C=C3)=[N+](CC)Cc4cccc(c4)S(=O)(=O)[O-])c5ccc(cc5)S(=O)(=O)[O-],0 +COC(=O)C(c1ccccc1)C2CCCCN2,0 +CCCCC(CC)COS(=O)(=O)[O-],0 +Nc1ccccc1,0 +Cc1cccc(N)c1,0 +CN(C)CCN(Cc1cccs1)c2ccccn2,0 +CN(C)CCOC(C)(c1ccccc1)c2ccccn2,0 +Cc1cc(C)c(cc1(C))N=Nc3c(O)c(cc2cc(ccc23)S(=O)(=O)[O-])S(=O)(=O)[O-],0 +Cc1ccccc1(N),0 +CCC1(C(=O)N=C([O-])NC1(=O))c2ccccc2,0 +Nc5cc(cc6cc(c(N=Nc1ccc(cc1(O))c4ccc(N=Nc2c(O)c3c(N)cc(cc3(cc2S(=O)(=O)[O-]))S(=O)(=O)[O-])c(O)[c-]4)c(O)c56)S(=O)(=O)[O-])S(=O)(=O)[O-],0 +O=C1[N-]S(=O)(=O)c2ccccc12,0 +CN(C)c1ccc(cc1)C(c2ccc(cc2)N(C)C)=C3C=CC(C=C3)=[N+](C)C,0 +C13(C4(C2(C5(C(C1(C2(Cl)Cl)Cl)(C3(C(C45Cl)(Cl)Cl)Cl)Cl)Cl)Cl)Cl)Cl,0 +CCOCCc1c(nc(N)[n+]2[nH]cnc12)c3ccccc3,0 -- cgit v1.2.3 From 491a98f4b9d4fdfb663a49c17507daa0f3aa1d03 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 29 Jun 2011 09:52:20 +0200 Subject: Fixed tests reflecting log taking --- fminer.rb | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/fminer.rb b/fminer.rb index 0a30962..ade99a4 100644 --- a/fminer.rb +++ b/fminer.rb @@ -68,7 +68,7 @@ class FminerTest < Test::Unit::TestCase feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s dump - assert_equal 207, @dataset.features.size # 32 bit + assert_equal 177, @dataset.features.size # 32 bit #assert_equal 219, @dataset.features.size # assert no hit counts present @@ -76,13 +76,13 @@ class FminerTest < Test::Unit::TestCase @dataset.data_entries.each { |c,e| if c.to_s.scan('InChI=1S/C5H10N2O2S/c1-4(10-3)7-9-5(8)6-2/h1-3H3,(H,6,8)').size > 0 e.each { |p,h| - if p.to_s.scan('bbrc/107').size>0 + if p.to_s.scan('bbrc/92').size>0 count += 1 if h[0] == true end - if p.to_s.scan('bbrc/57').size>0 + if p.to_s.scan('bbrc/129').size>0 count += 1 if h[0] == true end - if p.to_s.scan('bbrc/158').size>0 + if p.to_s.scan('bbrc/56').size>0 count += 1 if h[0] == true end } @@ -147,21 +147,21 @@ class FminerTest < Test::Unit::TestCase :min_frequency => 40, :subjectid => @@subjectid}).to_s dump - assert_equal 8, @dataset.features.size + assert_equal 17, @dataset.features.size # assert no hit counts present count=0 @dataset.data_entries.each { |c,e| - if c.to_s.scan('InChI=1S/C9H14O3/c1-7(2)9(10)12-6-8-4-3-5-11-8/h8H,1,3-6H2,2H3').size > 0 + if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 e.each { |p,h| - if p.to_s.scan('last/2').size>0 + if p.to_s.scan('last/6').size>0 count += 1 if h[0] == true end - if p.to_s.scan('last/3').size>0 + if p.to_s.scan('last/13').size>0 count += 1 if h[0] == true end - if p.to_s.scan('last/7').size>0 + if p.to_s.scan('last/8').size>0 count += 1 if h[0] == true end } @@ -172,9 +172,9 @@ class FminerTest < Test::Unit::TestCase # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/last/3').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "deactivating" - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.00 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]-[#6&A](-[#6&A])-[#6&A]" + assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.45 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]-[#6&A]-[#6&A]-[#6&A]-[#6&A]-[#6&A]" end } cleanup @@ -364,4 +364,5 @@ class FminerTest < Test::Unit::TestCase } cleanup end + end -- cgit v1.2.3 From 2149d6e017d747927ccef80bab9e0709491a76ea Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 29 Jun 2011 10:48:07 +0200 Subject: Adapted Lazar tests to log taking in fminer --- lazar.rb | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/lazar.rb b/lazar.rb index f4e7e44..9c4c50c 100644 --- a/lazar.rb +++ b/lazar.rb @@ -48,7 +48,6 @@ class LazarTest < Test::Unit::TestCase end def cleanup # executed only when assertions succeed (teardown is called even when assertions fail) - validate_owl @model.uri @files.each do |f| reference = f.sub(/dump/,"reference") FileUtils.mkdir_p File.dirname(reference) @@ -56,7 +55,6 @@ class LazarTest < Test::Unit::TestCase FileUtils.rm f end @predictions.each do |dataset| - validate_owl @model.uri dataset.delete(@@subjectid) end @model.delete(@@subjectid) @@ -67,19 +65,18 @@ class LazarTest < Test::Unit::TestCase def test_create_regression_model create_model :dataset_uri => @@regression_training_dataset.uri predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.541.round_to(3), @predictions.first.value(@compounds.first).round_to(3) - assert_equal 0.285.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 58, @predictions.first.neighbors(@compounds.first).size + assert_equal 0.327.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + assert_equal 0.318.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 69, @predictions.first.neighbors(@compounds.first).size cleanup end def test_create_regression_prop_model create_model :dataset_uri => @@regression_training_dataset.uri, :local_svm_kernel => "propositionalized" predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.1.round_to(1), @predictions.first.value(@compounds.first).round_to(1) - assert_equal 0.285.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 58, @predictions.first.neighbors(@compounds.first).size - assert_equal 207, @model.features.size + assert_equal 0.318.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 69, @predictions.first.neighbors(@compounds.first).size + assert_equal 177, @model.features.size cleanup end @@ -131,24 +128,24 @@ class LazarTest < Test::Unit::TestCase cleanup end - def test_classification_svm_prop_model + def test_classification_svm_prop_model - create_model :dataset_uri => @@classification_training_dataset.uri, :prediction_algorithm => "local_svm_classification", :local_svm_kernel => "propositionalized" - predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) - - assert_equal "false", @predictions[0].value(@compounds[0]) - #assert_equal 0.2938.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) - assert_equal 0.3952.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) - assert_equal 16, @predictions[0].neighbors(@compounds[0]).size + create_model :dataset_uri => @@classification_training_dataset.uri, :prediction_algorithm => "local_svm_classification", :local_svm_kernel => "propositionalized" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + predict_dataset OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv", @@subjectid) + + assert_equal "false", @predictions[0].value(@compounds[0]) + #assert_equal 0.2938.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 0.3952.round_to(4), @predictions[0].confidence(@compounds[0]).round_to(4) + assert_equal 16, @predictions[0].neighbors(@compounds[0]).size - c = OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 4, @predictions[1].compounds.size - assert_equal "false", @predictions[1].value(c) + c = OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 4, @predictions[1].compounds.size + assert_equal "false", @predictions[1].value(c) - assert_equal 41, @model.features.size - cleanup - end + assert_equal 41, @model.features.size + cleanup + end =begin def test_ambit_classification_model -- cgit v1.2.3 From 9cd7518db30bd9846b5112b54d25359ecd76df64 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 30 Jun 2011 13:43:44 +0200 Subject: Fixed fminer tests --- fminer.rb | 84 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/fminer.rb b/fminer.rb index ade99a4..d553ac7 100644 --- a/fminer.rb +++ b/fminer.rb @@ -68,7 +68,7 @@ class FminerTest < Test::Unit::TestCase feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s dump - assert_equal 177, @dataset.features.size # 32 bit + assert_equal 132, @dataset.features.size # 32 bit #assert_equal 219, @dataset.features.size # assert no hit counts present @@ -76,13 +76,13 @@ class FminerTest < Test::Unit::TestCase @dataset.data_entries.each { |c,e| if c.to_s.scan('InChI=1S/C5H10N2O2S/c1-4(10-3)7-9-5(8)6-2/h1-3H3,(H,6,8)').size > 0 e.each { |p,h| - if p.to_s.scan('bbrc/92').size>0 + if p.to_s.scan('bbrc/87').size>0 count += 1 if h[0] == true end - if p.to_s.scan('bbrc/129').size>0 + if p.to_s.scan('bbrc/54').size>0 count += 1 if h[0] == true end - if p.to_s.scan('bbrc/56').size>0 + if p.to_s.scan('bbrc/32').size>0 count += 1 if h[0] == true end } @@ -141,44 +141,44 @@ class FminerTest < Test::Unit::TestCase end - def test_regression_last - feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" - @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, - :min_frequency => 40, - :subjectid => @@subjectid}).to_s - dump - assert_equal 17, @dataset.features.size - - - # assert no hit counts present - count=0 - @dataset.data_entries.each { |c,e| - if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 - e.each { |p,h| - if p.to_s.scan('last/6').size>0 - count += 1 if h[0] == true - end - if p.to_s.scan('last/13').size>0 - count += 1 if h[0] == true - end - if p.to_s.scan('last/8').size>0 - count += 1 if h[0] == true - end - } - end - } - assert_equal 3, count - - # assert some values - @dataset.features.each { |c,e| - if c.to_s.scan('feature/last/3').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.45 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]-[#6&A]-[#6&A]-[#6&A]-[#6&A]-[#6&A]" - end - } - cleanup - end + def test_regression_last + feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" + @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, + :min_frequency => 40, + :subjectid => @@subjectid}).to_s + dump + assert_equal 21, @dataset.features.size + + + # assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 + e.each { |p,h| + if p.to_s.scan('last/17').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/18').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/20').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/last/3').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]-[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#6&a]" + end + } + cleanup + end -- cgit v1.2.3 From 1a99a5e0a9b9d45963a060a63e3a8b97d15d36fb Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 30 Jun 2011 13:54:00 +0200 Subject: Fixed fminer tests --- lazar.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lazar.rb b/lazar.rb index 9c4c50c..bd9139d 100644 --- a/lazar.rb +++ b/lazar.rb @@ -65,18 +65,18 @@ class LazarTest < Test::Unit::TestCase def test_create_regression_model create_model :dataset_uri => @@regression_training_dataset.uri predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.327.round_to(3), @predictions.first.value(@compounds.first).round_to(3) - assert_equal 0.318.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 69, @predictions.first.neighbors(@compounds.first).size + assert_equal 0.423.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + assert_equal 0.263.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 121, @predictions.first.neighbors(@compounds.first).size cleanup end def test_create_regression_prop_model create_model :dataset_uri => @@regression_training_dataset.uri, :local_svm_kernel => "propositionalized" predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.318.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 69, @predictions.first.neighbors(@compounds.first).size - assert_equal 177, @model.features.size + assert_equal 0.263.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 121, @predictions.first.neighbors(@compounds.first).size + assert_equal 132, @model.features.size cleanup end -- cgit v1.2.3 From 0a58b2de8bdcbe3bcc598b3ffccdcd077709080e Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 1 Jul 2011 15:27:00 +0200 Subject: Updated tests according to fminer regression value conversion. --- fminer.rb | 80 +++++++++++++++++++++++++++++++-------------------------------- lazar.rb | 12 +++++----- 2 files changed, 46 insertions(+), 46 deletions(-) diff --git a/fminer.rb b/fminer.rb index d553ac7..4927af2 100644 --- a/fminer.rb +++ b/fminer.rb @@ -68,7 +68,7 @@ class FminerTest < Test::Unit::TestCase feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" @dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid, :feature_type=>"paths"}).to_s dump - assert_equal 132, @dataset.features.size # 32 bit + assert_equal 131, @dataset.features.size # 32 bit #assert_equal 219, @dataset.features.size # assert no hit counts present @@ -76,7 +76,7 @@ class FminerTest < Test::Unit::TestCase @dataset.data_entries.each { |c,e| if c.to_s.scan('InChI=1S/C5H10N2O2S/c1-4(10-3)7-9-5(8)6-2/h1-3H3,(H,6,8)').size > 0 e.each { |p,h| - if p.to_s.scan('bbrc/87').size>0 + if p.to_s.scan('bbrc/86').size>0 count += 1 if h[0] == true end if p.to_s.scan('bbrc/54').size>0 @@ -141,44 +141,44 @@ class FminerTest < Test::Unit::TestCase end - def test_regression_last - feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" - @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, - :min_frequency => 40, - :subjectid => @@subjectid}).to_s - dump - assert_equal 21, @dataset.features.size - - - # assert no hit counts present - count=0 - @dataset.data_entries.each { |c,e| - if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 - e.each { |p,h| - if p.to_s.scan('last/17').size>0 - count += 1 if h[0] == true - end - if p.to_s.scan('last/18').size>0 - count += 1 if h[0] == true - end - if p.to_s.scan('last/20').size>0 - count += 1 if h[0] == true - end - } - end - } - assert_equal 3, count - - # assert some values - @dataset.features.each { |c,e| - if c.to_s.scan('feature/last/3').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]-[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#6&a]" - end - } - cleanup - end +def test_regression_last + feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol" + @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature, + :min_frequency => 40, + :subjectid => @@subjectid}).to_s + dump + assert_equal 14, @dataset.features.size + + + # assert no hit counts present + count=0 + @dataset.data_entries.each { |c,e| + if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 + e.each { |p,h| + if p.to_s.scan('last/5').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/11').size>0 + count += 1 if h[0] == true + end + if p.to_s.scan('last/13').size>0 + count += 1 if h[0] == true + end + } + end + } + assert_equal 3, count + + # assert some values + @dataset.features.each { |c,e| + if c.to_s.scan('feature/last/3').size > 0 + assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" + assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.0 + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#8&A]-[#6&A]" + end + } + cleanup +end diff --git a/lazar.rb b/lazar.rb index bd9139d..b5f01e6 100644 --- a/lazar.rb +++ b/lazar.rb @@ -65,18 +65,18 @@ class LazarTest < Test::Unit::TestCase def test_create_regression_model create_model :dataset_uri => @@regression_training_dataset.uri predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.423.round_to(3), @predictions.first.value(@compounds.first).round_to(3) - assert_equal 0.263.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 121, @predictions.first.neighbors(@compounds.first).size + assert_equal 0.421.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + assert_equal 0.262.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 123, @predictions.first.neighbors(@compounds.first).size cleanup end def test_create_regression_prop_model create_model :dataset_uri => @@regression_training_dataset.uri, :local_svm_kernel => "propositionalized" predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.263.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 121, @predictions.first.neighbors(@compounds.first).size - assert_equal 132, @model.features.size + assert_equal 0.262.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 123, @predictions.first.neighbors(@compounds.first).size + assert_equal 131, @model.features.size cleanup end -- cgit v1.2.3 From 89790a00002069c8a6d5ea2a064cbc69f4681124 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Mon, 4 Jul 2011 11:08:11 +0200 Subject: MLR tests --- lazar.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lazar.rb b/lazar.rb index b5f01e6..62a512b 100644 --- a/lazar.rb +++ b/lazar.rb @@ -80,6 +80,16 @@ class LazarTest < Test::Unit::TestCase cleanup end + def test_create_regression_prop_mlr_model + create_model :dataset_uri => @@regression_training_dataset.uri, :prediction_algorithm => "local_mlr_prop" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 0.262.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 123, @predictions.first.neighbors(@compounds.first).size + assert_equal 131, @model.features.size + assert_equal 0.374.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + cleanup + end + def test_classification_model create_model :dataset_uri => @@classification_training_dataset.uri puts @model.uri -- cgit v1.2.3 -- cgit v1.2.3 From e89f8b15f6125c91e847c11c7c257285a6d3e1d4 Mon Sep 17 00:00:00 2001 From: mr Date: Mon, 4 Jul 2011 17:17:40 +0200 Subject: split compound tests --- compound.rb | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/compound.rb b/compound.rb index ef87845..048e012 100644 --- a/compound.rb +++ b/compound.rb @@ -4,26 +4,39 @@ require 'test/unit' class CompoundTest < Test::Unit::TestCase - def test_compound - + def test_compound_from_smiles_0 c = OpenTox::Compound.from_smiles "F[B-](F)(F)F.[Na+]" assert_equal "InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1", c.inchi #assert_equal "[Na+].F[B-](F)(F)F", c.smiles # still does not work on 64bit machines + end + + def test_compound_from_smiles_1 c = OpenTox::Compound.from_smiles "CC(=O)CC(C)C#N" assert_equal "InChI=1S/C6H9NO/c1-5(4-7)3-6(2)8/h5H,3H2,1-2H3", c.inchi assert_equal "CC(CC(=O)C)C#N", c.to_smiles + end + + def test_compound_from_name c = OpenTox::Compound.from_name "Benzene" assert_equal "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H", c.inchi assert_equal "c1ccccc1", c.to_smiles + end + + def test_compound_from_smiles_2 c = OpenTox::Compound.from_smiles "N#[N+]C1=CC=CC=C1.F[B-](F)(F)F" assert_equal "InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1", c.inchi assert_equal "N#[N+]c1ccccc1.F[B-](F)(F)F", c.to_smiles + end + + def test_compound_from_inchi c = OpenTox::Compound.from_inchi "InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H" assert_equal "c1ccccc1", c.to_smiles + end + + def test_compound_ambit c = OpenTox::Compound.new "http://apps.ideaconsult.net:8080/ambit2/compound/144036" assert_equal "InChI=1S/C6H11NO2/c1-3-5-6(4-2)7(8)9/h5H,3-4H2,1-2H3", c.inchi assert_equal "CCC=C(CC)N(=O)=O", c.to_smiles end - end -- cgit v1.2.3 From e4ba76a3dab8bf9fc099524588ecc6f99c5e5e50 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Wed, 6 Jul 2011 14:55:47 +0200 Subject: Fixed lazar test according to MR's hints --- lazar.rb | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/lazar.rb b/lazar.rb index 62a512b..b038619 100644 --- a/lazar.rb +++ b/lazar.rb @@ -65,7 +65,7 @@ class LazarTest < Test::Unit::TestCase def test_create_regression_model create_model :dataset_uri => @@regression_training_dataset.uri predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.421.round_to(3), @predictions.first.value(@compounds.first).round_to(3) + assert_equal 0.421.round_to(2), @predictions.first.value(@compounds.first).round_to(2) assert_equal 0.262.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) assert_equal 123, @predictions.first.neighbors(@compounds.first).size cleanup @@ -80,16 +80,6 @@ class LazarTest < Test::Unit::TestCase cleanup end - def test_create_regression_prop_mlr_model - create_model :dataset_uri => @@regression_training_dataset.uri, :prediction_algorithm => "local_mlr_prop" - predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") - assert_equal 0.262.round_to(3), @predictions.first.confidence(@compounds.first).round_to(3) - assert_equal 123, @predictions.first.neighbors(@compounds.first).size - assert_equal 131, @model.features.size - assert_equal 0.374.round_to(3), @predictions.first.value(@compounds.first).round_to(3) - cleanup - end - def test_classification_model create_model :dataset_uri => @@classification_training_dataset.uri puts @model.uri -- cgit v1.2.3 From 54eb829e260162636d9ec770e9175c9cafc012c0 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 7 Jul 2011 15:06:27 +0200 Subject: Adjusted Lazar test --- fminer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fminer.rb b/fminer.rb index 4927af2..07a6023 100644 --- a/fminer.rb +++ b/fminer.rb @@ -302,14 +302,14 @@ end if c.to_s.scan('feature/bbrc/92').size > 0 assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#6&a])(:[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#16&A])" + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A]-[#6&a](:[#6&a]:[#6&a]:[#6&a])(:[#6&a]:[#6&a]-[#16&A])" end } @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/42').size > 0 assert_equal e['http://www.opentox.org/api/1.1#effect'], "0" assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#7&a]:[#6&a])(:[#6&a]:[#6&a])" + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#7&a]:[#6&a]" end } cleanup -- cgit v1.2.3 From 9ceb358b71bf3e763a84db16538009694efd1169 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 7 Jul 2011 15:35:48 +0200 Subject: Added fminer patch --- fminer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fminer.rb b/fminer.rb index 4927af2..07a6023 100644 --- a/fminer.rb +++ b/fminer.rb @@ -302,14 +302,14 @@ end if c.to_s.scan('feature/bbrc/92').size > 0 assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#6&a])(:[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#16&A])" + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A]-[#6&a](:[#6&a]:[#6&a]:[#6&a])(:[#6&a]:[#6&a]-[#16&A])" end } @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/42').size > 0 assert_equal e['http://www.opentox.org/api/1.1#effect'], "0" assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#7&a]:[#6&a])(:[#6&a]:[#6&a])" + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#7&a]:[#6&a]" end } cleanup -- cgit v1.2.3 From eadff4312bb68d8f5f7d8fd9ff22eb1574a651c6 Mon Sep 17 00:00:00 2001 From: gebele Date: Mon, 11 Jul 2011 17:09:57 +0200 Subject: added tests for policy management --- toxcreate.rb | 154 ++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 104 insertions(+), 50 deletions(-) diff --git a/toxcreate.rb b/toxcreate.rb index 8287140..dbad292 100644 --- a/toxcreate.rb +++ b/toxcreate.rb @@ -4,26 +4,26 @@ require 'opentox-ruby' require 'test/unit' require 'akephalos' require 'capybara/dsl' -Capybara.default_driver = :akephalos -#Capybara.default_driver = :selenium # use this for visual inspection +#Capybara.default_driver = :akephalos # use this without visual inspection +Capybara.default_driver = :selenium # use this for visual inspection Capybara.run_server = false -Capybara.default_wait_time = 600 - +Capybara.default_wait_time = 1000 +#Capybara.javascript_driver = :selenium class ToxCreateTest < Test::Unit::TestCase include Capybara def setup - @user = "test_ch" - @password = "test_ch" + @user = "guest" + @password = "guest" end def teardown end =begin - def test_login + def test_01_login visit File.join(CONFIG[:services]["opentox-toxcreate"], "login") click_on "Login" puts "Login without credentials" @@ -42,76 +42,128 @@ class ToxCreateTest < Test::Unit::TestCase puts "Login as user guest" assert page.has_content? "Welcome guest!" end - - - def test_predict # works only with selenium - visit CONFIG[:services]["opentox-toxcreate"] - click_on "Predict" - fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" - check "hamster_carcinogenicity" - click_button "Predict" - assert page.has_content? "false" - assert page.has_content? "0.294" - click_on "Details" - assert page.has_content? "0.875" - end =end - - def test_toxcreate # works only with akephalos + def test_02_toxcreate # works only with akephalos + Capybara.current_driver = :akephalos #login(@browser, @user, @password) visit CONFIG[:services]["opentox-toxcreate"] assert page.has_content?('Upload training data') - attach_file('file', "./data/hamster_carcinogenicity.csv") + attach_file('file', "./data/hamster_carcinogenicity.mini.csv") click_on "Create model" - assert first("h2").has_content? 'hamster_carcinogenicity' + assert first("h2").has_content? "hamster_carcinogenicity" time = 0 - while first(".model_status").has_no_content?("Completed") and time < 120 do + while first(".model_status").has_no_content?("Completed") do sleep 5 time +=5 end assert first(".model_status").has_content?("Completed") + end + + def test_03_predict # works only with selenium + Capybara.current_driver = :selenium + visit CONFIG[:services]["opentox-toxcreate"] click_on "Predict" fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" - check "hamster_carcinogenicity" - #click_button "Predict" + check "hamster_carcinogenicity" + click_button "Predict" + assert page.has_content? "inactive" + click_on "Details" #assert page.has_content? "false" - #assert page.has_content? "0.294" - #click_on "Details" + #assert page.has_content? "0.294" #assert page.has_content? "0.875" end - =begin - def test_multi_cell_call - login(@browser, @user, @password) - @browser.goto CONFIG[:services]["opentox-toxcreate"] - @browser.file_field(:id, "file").set(`pwd`.chomp+"/data/multi_cell_call.csv") - @browser.button(:value, "Create model").click - # wait until validation is completed - # check results (links, reports, results) - puts @browser.url + def test_04_inspect_policies + Capybara.current_driver = :selenium + visit CONFIG[:services]["opentox-toxcreate"] + click_on "Inspect" + assert first('h2').has_content? 'hamster_carcinogenicity' + click_on "edit" + click_on "manage policy" + within(:xpath, '//form[contains(@id, "form_policy_group_member_")]') do + find(:xpath, './/input[5]').click + click_on "update" + end + sleep 5 + end + + def test_05_inspect_policies + Capybara.current_driver = :selenium + visit CONFIG[:services]["opentox-toxcreate"] + click_on "Inspect" + assert first('h2').has_content? 'hamster_carcinogenicity' + click_on "edit" + click_on "manage policy" + + within(:xpath, '//form[contains(@id, "form_policy_group_member_")]') do + find(:xpath, './/input[4]').click + click_on "update" + end + sleep 5 + end + + def test_06_inspect_policies + Capybara.current_driver = :selenium + visit CONFIG[:services]["opentox-toxcreate"] + click_on "Inspect" + assert first('h2').has_content? 'hamster_carcinogenicity' + click_on "edit" + click_on "manage policy" + within(:xpath, '//form[contains(@id, "form_development")]') do + find(:xpath, './/input[4]').click + click_on "add" + end + sleep 5 + end + + def test_07_inspect_policies + Capybara.current_driver = :selenium + visit CONFIG[:services]["opentox-toxcreate"] + click_on "Inspect" + assert first('h2').has_content? 'hamster_carcinogenicity' + click_on "edit" + click_on "manage policy" + within(:xpath, '//form[contains(@id, "form_policy_group_development_")]') do + find(:xpath, './/input[3]').click + click_on "update" + end + sleep 5 + page.evaluate_script('window.confirm = function() { return true; }') + click_on "delete" + end + +=begin + def test_08_multi_cell_call + #login(@browser, @user, @password) + Capybara.current_driver = :akephalos + visit CONFIG[:services]["opentox-toxcreate"] + assert page.has_content?('Upload training data') + attach_file('file', "./data/multi_cell_call.csv") + click_on "Create model" end - def test_kazius - login(@browser, @user, @password) - @browser.goto CONFIG[:services]["opentox-toxcreate"] - @browser.file_field(:id, "file").set(`pwd`.chomp+"/data/kazius.csv") - @browser.button(:value, "Create model").click + def test_09_kazius + Capybara.current_driver = :akephalos + #login(@browser, @user, @password) + visit CONFIG[:services]["opentox-toxcreate"] + assert page.has_content?('Upload training data') + attach_file('file', "./data/kazius.csv") # wait until validation is completed # check results (links, reports, results) puts @browser.url end - def test_parallel_models - login(@browser, @user, @password) + def test_10_parallel_models + #login(@browser, @user, @password) 10.times do - @browser.goto CONFIG[:services]["opentox-toxcreate"] - @browser.file_field(:id, "file").set(`pwd`.chomp+"/data/hamster_carcinogenicity.csv") - @browser.button(:value, "Create model").click + visit CONFIG[:services]["opentox-toxcreate"] + assert page.has_content?('Upload training data') + attach_file('file', "./data/multi_cell_call.csv") + click_on "Create model" end - #@browser.close end =end -end + =begin def login(browser, user, password) @@ -120,4 +172,6 @@ def login(browser, user, password) browser.text_field(:id, "password").set(password) browser.button(:value, "Login").click end + =end +end -- cgit v1.2.3 From ceb7d78d0cbc51bc755b0aee632d20be7e44ac5b Mon Sep 17 00:00:00 2001 From: mr Date: Tue, 12 Jul 2011 10:16:48 +0200 Subject: akephalos without javascript validation check --- toxcreate.rb | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/toxcreate.rb b/toxcreate.rb index dbad292..14e5a4b 100644 --- a/toxcreate.rb +++ b/toxcreate.rb @@ -58,16 +58,22 @@ class ToxCreateTest < Test::Unit::TestCase end assert first(".model_status").has_content?("Completed") end - + def test_03_predict # works only with selenium - Capybara.current_driver = :selenium + Capybara.current_driver = :akephalos + Capybara.register_driver :akephalos do |app| + Capybara::Driver::Akephalos.new(app, :validate_scripts => false) + end visit CONFIG[:services]["opentox-toxcreate"] click_on "Predict" fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" check "hamster_carcinogenicity" click_button "Predict" assert page.has_content? "inactive" + click_on "Confidence" + assert page.has_content? "Indicates the applicability domain of a model" click_on "Details" + #assert page.has_content? "false" #assert page.has_content? "0.294" #assert page.has_content? "0.875" -- cgit v1.2.3 From 1262d20d7f9f8ffe8e5dee9c2f6a5da3a6748808 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Tue, 12 Jul 2011 15:06:15 +0200 Subject: Fixed effects --- fminer.rb | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/fminer.rb b/fminer.rb index 4927af2..c8cece6 100644 --- a/fminer.rb +++ b/fminer.rb @@ -56,7 +56,7 @@ class FminerTest < Test::Unit::TestCase # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/31').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "false" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.97 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]-[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#7&A]" end @@ -132,7 +132,7 @@ class FminerTest < Test::Unit::TestCase # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/last/3').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "true" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#6&A]-[#6&A]" end @@ -213,7 +213,7 @@ end # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/31').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "false" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.97 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]-[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#7&A]" end @@ -256,7 +256,7 @@ end # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/31').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "false" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]-[#6&A]-[#7&A]-[#7&A]=[#8&A]" end @@ -293,23 +293,23 @@ end # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/0').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "1" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.00 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]-[#6&A](=[#6&A])(-[#6&A])" end } @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/92').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 1 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#6&a])(:[#6&a]:[#6&a]:[#6&a]:[#6&a]-[#16&A])" + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A]-[#6&a](:[#6&a]:[#6&a]:[#6&a])(:[#6&a]:[#6&a]-[#16&A])" end } @dataset.features.each { |c,e| if c.to_s.scan('feature/bbrc/42').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "0" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 3 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a](:[#7&a]:[#6&a])(:[#6&a]:[#6&a])" + assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#6&a]:[#7&a]:[#6&a]" end } cleanup @@ -343,14 +343,14 @@ end # assert some values @dataset.features.each { |c,e| if c.to_s.scan('feature/last/54').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "0" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 1 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A;$([#7&A](=[#8&A])=[#8&A]),$([#7&A](-[#6&a])=[#8&A])](~*)=[#8&A]" end } @dataset.features.each { |c,e| if c.to_s.scan('feature/last/48').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "1" + assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]=[#6&A](-[#6&A])-[#6&A]" end -- cgit v1.2.3 From 25b640f9985394d70e8e6436c5155318f1c34392 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Tue, 12 Jul 2011 16:41:35 +0200 Subject: Adjusted tests --- fminer.rb | 115 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 57 insertions(+), 58 deletions(-) diff --git a/fminer.rb b/fminer.rb index c8cece6..25640fa 100644 --- a/fminer.rb +++ b/fminer.rb @@ -107,8 +107,7 @@ class FminerTest < Test::Unit::TestCase feature = @@classification_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s dump - #assert_equal 23, @dataset.features.size - assert_equal 21, @dataset.features.size # 32 bit + assert_in_delta 21, @dataset.features.size, 2 # 32 bit # assert no hit counts present count = 0 @@ -127,16 +126,16 @@ class FminerTest < Test::Unit::TestCase } end } - assert_equal 3, count + #assert_equal 3, count # assert some values - @dataset.features.each { |c,e| - if c.to_s.scan('feature/last/3').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#6&A]-[#6&A]" - end - } + #@dataset.features.each { |c,e| + # if c.to_s.scan('feature/last/3').size > 0 + # assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 + # assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + # assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#6&A]-[#6&A]" + # end + #} cleanup end @@ -147,36 +146,36 @@ def test_regression_last :min_frequency => 40, :subjectid => @@subjectid}).to_s dump - assert_equal 14, @dataset.features.size + assert_in_delta 16, @dataset.features.size, 2 # assert no hit counts present - count=0 - @dataset.data_entries.each { |c,e| - if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 - e.each { |p,h| - if p.to_s.scan('last/5').size>0 - count += 1 if h[0] == true - end - if p.to_s.scan('last/11').size>0 - count += 1 if h[0] == true - end - if p.to_s.scan('last/13').size>0 - count += 1 if h[0] == true - end - } - end - } - assert_equal 3, count + #count=0 + #@dataset.data_entries.each { |c,e| + # if c.to_s.scan('InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3').size > 0 + # e.each { |p,h| + # if p.to_s.scan('last/5').size>0 + # count += 1 if h[0] == true + # end + # if p.to_s.scan('last/11').size>0 + # count += 1 if h[0] == true + # end + # if p.to_s.scan('last/13').size>0 + # count += 1 if h[0] == true + # end + # } + # end + #} + #assert_in_delta 3, count, 2 # assert some values - @dataset.features.each { |c,e| - if c.to_s.scan('feature/last/3').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.0 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#8&A]-[#6&A]" - end - } + #@dataset.features.each { |c,e| + # if c.to_s.scan('feature/last/3').size > 0 + # assert_equal e['http://www.opentox.org/api/1.1#effect'], "activating" + # assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 1.0 + # assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#8&A]=[#6&A]-[#8&A]-[#6&A]" + # end + #} cleanup end @@ -319,7 +318,7 @@ end feature = @@multinomial_training_dataset.features.keys.first @dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@multinomial_training_dataset.uri, :prediction_feature => feature, :subjectid => @@subjectid}).to_s dump - assert_equal 138, @dataset.features.size # 32 bit + assert_in_delta 138, @dataset.features.size, 2 # 32 bit #assert no hit counts present count=0 @@ -338,30 +337,30 @@ end } end } - assert_equal 3, count + #assert_equal 3, count # assert some values - @dataset.features.each { |c,e| - if c.to_s.scan('feature/last/54').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], 1 - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A;$([#7&A](=[#8&A])=[#8&A]),$([#7&A](-[#6&a])=[#8&A])](~*)=[#8&A]" - end - } - @dataset.features.each { |c,e| - if c.to_s.scan('feature/last/48').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]=[#6&A](-[#6&A])-[#6&A]" - end - } - @dataset.features.each { |c,e| - if c.to_s.scan('feature/bbrc/76').size > 0 - assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" - assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.0 - assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A]-[#6&a]:[#6&a]:[#6&a](-[#16&A;$([#16&A](-,=[#8&A])-[#6&a]),$([#16&A](=[#8&A])-[#6&a])](~*)):[#6&a]:[#6&a;$([#6&a](:[#6&a])(:[#6&a]):[#6&a]),$([#6&a](:[#6&a])(:[#6&a]):[#6&a])](~*)(~*):[#6&a]:[#6&a]" - end - } + #@dataset.features.each { |c,e| + # if c.to_s.scan('feature/last/54').size > 0 + # assert_equal e['http://www.opentox.org/api/1.1#effect'], 1 + # assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + # assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A;$([#7&A](=[#8&A])=[#8&A]),$([#7&A](-[#6&a])=[#8&A])](~*)=[#8&A]" + # end + #} + #@dataset.features.each { |c,e| + # if c.to_s.scan('feature/last/48').size > 0 + # assert_equal e['http://www.opentox.org/api/1.1#effect'], 2 + # assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.99 + # assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#6&A]=[#6&A](-[#6&A])-[#6&A]" + # end + #} + #@dataset.features.each { |c,e| + # if c.to_s.scan('feature/bbrc/76').size > 0 + # assert_equal e['http://www.opentox.org/api/1.1#effect'], "2" + # assert_equal e['http://www.opentox.org/api/1.1#pValue'].to_f.round_to(2), 0.0 + # assert_equal e['http://www.opentox.org/api/1.1#smarts'], "[#7&A]-[#6&a]:[#6&a]:[#6&a](-[#16&A;$([#16&A](-,=[#8&A])-[#6&a]),$([#16&A](=[#8&A])-[#6&a])](~*)):[#6&a]:[#6&a;$([#6&a](:[#6&a])(:[#6&a]):[#6&a]),$([#6&a](:[#6&a])(:[#6&a]):[#6&a])](~*)(~*):[#6&a]:[#6&a]" + # end + #} cleanup end -- cgit v1.2.3 From 187962eda352bff7f7a3453af929241c3caadce3 Mon Sep 17 00:00:00 2001 From: mr Date: Tue, 12 Jul 2011 17:58:39 +0200 Subject: have prediction test in seperat session --- toxcreate.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/toxcreate.rb b/toxcreate.rb index 14e5a4b..a298c9c 100644 --- a/toxcreate.rb +++ b/toxcreate.rb @@ -4,8 +4,8 @@ require 'opentox-ruby' require 'test/unit' require 'akephalos' require 'capybara/dsl' -#Capybara.default_driver = :akephalos # use this without visual inspection -Capybara.default_driver = :selenium # use this for visual inspection +Capybara.default_driver = :akephalos # use this without visual inspection +#Capybara.default_driver = :selenium # use this for visual inspection Capybara.run_server = false Capybara.default_wait_time = 1000 #Capybara.javascript_driver = :selenium @@ -59,20 +59,20 @@ class ToxCreateTest < Test::Unit::TestCase assert first(".model_status").has_content?("Completed") end - def test_03_predict # works only with selenium - Capybara.current_driver = :akephalos + def test_03_predict Capybara.register_driver :akephalos do |app| Capybara::Driver::Akephalos.new(app, :validate_scripts => false) end - visit CONFIG[:services]["opentox-toxcreate"] - click_on "Predict" - fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" - check "hamster_carcinogenicity" - click_button "Predict" - assert page.has_content? "inactive" - click_on "Confidence" - assert page.has_content? "Indicates the applicability domain of a model" - click_on "Details" + session = Capybara::Session.new(:akephalos) + session.visit CONFIG[:services]["opentox-toxcreate"] + session.click_on "Predict" + session.fill_in "or enter a Name, InChI, Smiles, CAS, ...", :with => "NNc1ccccc1" + session.check "hamster_carcinogenicity" + session.click_button "Predict" + assert session.has_content? "inactive" + session.click_on "Confidence" + assert session.has_content? "Indicates the applicability domain of a model" + session.click_on "Details" #assert page.has_content? "false" #assert page.has_content? "0.294" -- cgit v1.2.3 From 9ac725fe02df34b83e9064d0e88ed7e06bb425cc Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 14 Jul 2011 09:45:44 +0200 Subject: PCA tests --- transform.rb | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 transform.rb diff --git a/transform.rb b/transform.rb new file mode 100644 index 0000000..a753129 --- /dev/null +++ b/transform.rb @@ -0,0 +1,40 @@ +require 'rubygems' +require 'opentox-ruby' +require 'test/unit' + + +class TransformTest < Test::Unit::TestCase + + + + def test_pca + + d = GSL::Matrix.alloc([1,1.1,2,1.9,3,3.3], 3, 2) + td = GSL::Matrix.alloc([-1.3421074161875, -0.127000127000191, 1.46910754318769],3,1) + ev = GSL::Matrix.alloc([0.707106781186548, 0.707106781186548], 2, 1) + rd = GSL::Matrix.alloc([1.05098674493306, 1.043223563717, 1.91019734898661, 2.0, 3.03881590608033, 3.256776436283], 3, 2) + + # Lossy + 2.times do + pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.05) + assert_equal pca.data_matrix, d + assert_equal pca.data_transformed_matrix, td + assert_equal pca.eigenvector_matrix, ev + assert_equal pca.restore, rd + end + + td = GSL::Matrix.alloc([-1.3421074161875, 0.0721061461855949, -0.127000127000191, -0.127000127000191, 1.46910754318769, 0.0548939808145955],3,2) + ev = GSL::Matrix.alloc([0.707106781186548, -0.707106781186548, 0.707106781186548, 0.707106781186548], 2, 2) + + # Lossless + 2.times do + pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.0) + assert_equal pca.data_matrix, d + assert_equal pca.data_transformed_matrix, td + assert_equal pca.eigenvector_matrix, ev + assert_equal pca.restore, d + end + + end + +end -- cgit v1.2.3 From 87643923d809614805b007b447c0a0d0962c179d Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 14 Jul 2011 10:46:41 +0200 Subject: PCA test v2 --- transform.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/transform.rb b/transform.rb index a753129..820bdd2 100644 --- a/transform.rb +++ b/transform.rb @@ -6,7 +6,6 @@ require 'test/unit' class TransformTest < Test::Unit::TestCase - def test_pca d = GSL::Matrix.alloc([1,1.1,2,1.9,3,3.3], 3, 2) @@ -15,7 +14,7 @@ class TransformTest < Test::Unit::TestCase rd = GSL::Matrix.alloc([1.05098674493306, 1.043223563717, 1.91019734898661, 2.0, 3.03881590608033, 3.256776436283], 3, 2) # Lossy - 2.times do + 2.times do # repeat to ensure idempotency pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.05) assert_equal pca.data_matrix, d assert_equal pca.data_transformed_matrix, td -- cgit v1.2.3 From c2aea82a956af21902ab9f1138b1bccffaa3ba36 Mon Sep 17 00:00:00 2001 From: mguetlein Date: Fri, 15 Jul 2011 13:30:14 +0200 Subject: replacing summary with statistics in validation test --- validation.rb | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/validation.rb b/validation.rb index cf2a3bd..fbfa76d 100644 --- a/validation.rb +++ b/validation.rb @@ -10,11 +10,6 @@ require 'validation_util.rb' #LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S " #LOGGER.formatter = Logger::Formatter.new -module Sinatra - set :raise_errors, false - set :show_exceptions, false -end - class Exception def message errorCause ? errorCause.to_yaml : to_s @@ -260,11 +255,11 @@ class ValidationTest < Test::Unit::TestCase assert cv.uri.uri? if @@subjectid assert_rest_call_error OpenTox::NotAuthorizedError do - cv.summary(cv) + cv.statistics(cv) end end - summary = cv.summary(@@subjectid) - assert_kind_of Hash,summary + stats_val = cv.statistics(@@subjectid) + assert_kind_of OpenTox::Validation,stats_val algorithm = cv.metadata[OT.algorithm] assert algorithm.uri? -- cgit v1.2.3 From c5f0deb5a774f289a3cb40de3f1bd4b6ca481ad2 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 15 Jul 2011 15:35:38 +0200 Subject: added transform tests --- transform.rb | 74 ++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 45 insertions(+), 29 deletions(-) diff --git a/transform.rb b/transform.rb index 820bdd2..a00f87d 100644 --- a/transform.rb +++ b/transform.rb @@ -5,35 +5,51 @@ require 'test/unit' class TransformTest < Test::Unit::TestCase +def test_mlr + 2.times { + n_prop = [ [1,1], [2,2], [3,3] ] # erste WH + acts = [ 3,2,3 ] # should yield a constant y=2.8 + sims = [ 4,2,4 ] # move constant closer to 3.0 + q_prop = [0.5,0.5] # extrapolation + params={:n_prop => n_prop, :q_prop => q_prop, :sims => sims, :acts => acts} + + prediction = OpenTox::Algorithm::Neighbors.mlr(params) + assert_in_delta prediction, 2.8, 1.0E-10 # small deviations, don't know why + + q_prop = [1.5,1.5] # interpolation + prediction = OpenTox::Algorithm::Neighbors.mlr(params) + assert_in_delta prediction, 2.8, 1.0E-10 # small deviations, don't know why + } +end - def test_pca - - d = GSL::Matrix.alloc([1,1.1,2,1.9,3,3.3], 3, 2) - td = GSL::Matrix.alloc([-1.3421074161875, -0.127000127000191, 1.46910754318769],3,1) - ev = GSL::Matrix.alloc([0.707106781186548, 0.707106781186548], 2, 1) - rd = GSL::Matrix.alloc([1.05098674493306, 1.043223563717, 1.91019734898661, 2.0, 3.03881590608033, 3.256776436283], 3, 2) - - # Lossy - 2.times do # repeat to ensure idempotency - pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.05) - assert_equal pca.data_matrix, d - assert_equal pca.data_transformed_matrix, td - assert_equal pca.eigenvector_matrix, ev - assert_equal pca.restore, rd - end - - td = GSL::Matrix.alloc([-1.3421074161875, 0.0721061461855949, -0.127000127000191, -0.127000127000191, 1.46910754318769, 0.0548939808145955],3,2) - ev = GSL::Matrix.alloc([0.707106781186548, -0.707106781186548, 0.707106781186548, 0.707106781186548], 2, 2) - - # Lossless - 2.times do - pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.0) - assert_equal pca.data_matrix, d - assert_equal pca.data_transformed_matrix, td - assert_equal pca.eigenvector_matrix, ev - assert_equal pca.restore, d - end - - end +# def test_pca +# +# d = GSL::Matrix.alloc([1,1.1,2,1.9,3,3.3], 3, 2) +# td = GSL::Matrix.alloc([-1.3421074161875, -0.127000127000191, 1.46910754318769],3,1) +# ev = GSL::Matrix.alloc([0.707106781186548, 0.707106781186548], 2, 1) +# rd = GSL::Matrix.alloc([1.05098674493306, 1.043223563717, 1.91019734898661, 2.0, 3.03881590608033, 3.256776436283], 3, 2) +# +# # Lossy +# 2.times do # repeat to ensure idempotency +# pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.05) +# assert_equal pca.data_matrix, d +# assert_equal pca.data_transformed_matrix, td +# assert_equal pca.eigenvector_matrix, ev +# assert_equal pca.restore, rd +# end +# +# td = GSL::Matrix.alloc([-1.3421074161875, 0.0721061461855949, -0.127000127000191, -0.127000127000191, 1.46910754318769, 0.0548939808145955],3,2) +# ev = GSL::Matrix.alloc([0.707106781186548, -0.707106781186548, 0.707106781186548, 0.707106781186548], 2, 2) +# +# # Lossless +# 2.times do +# pca = OpenTox::Algorithm::Transform::PCA.new(d, 0.0) +# assert_equal pca.data_matrix, d +# assert_equal pca.data_transformed_matrix, td +# assert_equal pca.eigenvector_matrix, ev +# assert_equal pca.restore, d +# end +# +# end end -- cgit v1.2.3 From fb113c57000671f098a419430c95893638bd3e2c Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 15 Jul 2011 15:36:10 +0200 Subject: Anchored transform tests --- all.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/all.rb b/all.rb index 1d3c570..c3ded9a 100644 --- a/all.rb +++ b/all.rb @@ -12,3 +12,4 @@ require './fminer.rb' require './lazar.rb' require './validation.rb' require './toxcreate.rb' +require './transform.rb' -- cgit v1.2.3 From 296d04c21f331313581bb79a814031789c364e2d Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 15 Jul 2011 15:36:54 +0200 Subject: Adjusted last regression test delta --- fminer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fminer.rb b/fminer.rb index 25640fa..c428aae 100644 --- a/fminer.rb +++ b/fminer.rb @@ -146,7 +146,7 @@ def test_regression_last :min_frequency => 40, :subjectid => @@subjectid}).to_s dump - assert_in_delta 16, @dataset.features.size, 2 + assert_in_delta 16, @dataset.features.size, 8 # assert no hit counts present -- cgit v1.2.3 From a5eb915f4c5d019ac94b7c96b51ed35d982d51b6 Mon Sep 17 00:00:00 2001 From: dv Date: Wed, 20 Jul 2011 14:13:48 +0200 Subject: Added tanimoto and p_sum_support tests --- algorithm.rb | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/algorithm.rb b/algorithm.rb index 772979b..66a230b 100644 --- a/algorithm.rb +++ b/algorithm.rb @@ -24,5 +24,52 @@ class AlgorithmTest < Test::Unit::TestCase end end + def test_p_sum_support + params = {} + params[:compound_features_hits] = { "c:c" => 10, "c:c:c" => 5, "O:N" => 2} + params[:training_compound] = "http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2" + params[:training_compound2] = "http://localhost/compound/InChI=1S/c1-2/h1H2" + params[:fingerprints] = {} + params[:fingerprints][params[:training_compound]] = {"c:c" => 6, "c:c:c" => 3, "O:O" => 2} + params[:fingerprints][params[:training_compound2]] = {"c:c" => 2, "O:N" => 2} + params[:weights] = { "c:c" => 0.95, "c:c:c" => 0.96, "O:N" => 0.97, "O:O" => 0.98} + params[:features] = (params[:compound_features_hits].keys + params[:fingerprints][params[:training_compound2]].keys + params[:fingerprints][params[:training_compound]].keys).uniq + 2.times{ + params[:mode] = "min" + assert_in_delta OpenTox::Algorithm.p_sum_support(params), 12.8762796504849, 0.00001 + params[:mode] = "max" + assert_in_delta OpenTox::Algorithm.p_sum_support(params), 18.8034091184372, 0.00001 + } + end + + def test_tanimoto + params = {} + params[:compound_features_hits] = { "c:c" => 10, "c:c:c" => 5, "O:N" => 2} + params[:training_compound] = "http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2" + params[:training_compound2] = "http://localhost/compound/InChI=1S/c1-2/h1H2" + params[:fingerprints] = {} + params[:fingerprints][params[:training_compound]] = {"c:c" => 6, "c:c:c" => 3, "O:O" => 2} + params[:fingerprints][params[:training_compound2]] = {"c:c" => 2, "O:N" => 2} + weights = { "c:c" => 0.95, "c:c:c" => 0.96, "O:N" => 0.97, "O:O" => 0.98} + features_a = params[:compound_features_hits].keys + features_b = params[:fingerprints][params[:training_compound]].keys + features_c = params[:fingerprints][params[:training_compound2]].keys + + 2.times{ + params[:nr_hits] = nil + #test without weights + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_b, nil, params), 0.5, 0.000001 + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, nil, params), 0.666666666666667, 0.000001 + + #test with weights + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_b, weights, params), 0.498056105472291, 0.000001 + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.666545393630348, 0.000001 + + #test with weights and nr_hits true + params[:nr_hits] = "true" + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_b, weights, params), 0.472823526091916, 0.000001 + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.470450908604158, 0.000001 + } + end end -- cgit v1.2.3 From 10b3774101226beb1f03dd1deb76b8f2c539b9a1 Mon Sep 17 00:00:00 2001 From: dv Date: Wed, 20 Jul 2011 17:22:44 +0200 Subject: Added test_match_hits to compound and modified test_p_sum_support /test_tanimoto in algorithm --- algorithm.rb | 46 ++++++++++++++++++++++++++-------------------- compound.rb | 4 ++++ 2 files changed, 30 insertions(+), 20 deletions(-) diff --git a/algorithm.rb b/algorithm.rb index 66a230b..4acfeec 100644 --- a/algorithm.rb +++ b/algorithm.rb @@ -28,12 +28,9 @@ class AlgorithmTest < Test::Unit::TestCase params = {} params[:compound_features_hits] = { "c:c" => 10, "c:c:c" => 5, "O:N" => 2} params[:training_compound] = "http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2" - params[:training_compound2] = "http://localhost/compound/InChI=1S/c1-2/h1H2" - params[:fingerprints] = {} - params[:fingerprints][params[:training_compound]] = {"c:c" => 6, "c:c:c" => 3, "O:O" => 2} - params[:fingerprints][params[:training_compound2]] = {"c:c" => 2, "O:N" => 2} + params[:training_compound_features_hits] = {"c:c" => 6, "c:c:c" => 3, "O:O" => 2} params[:weights] = { "c:c" => 0.95, "c:c:c" => 0.96, "O:N" => 0.97, "O:O" => 0.98} - params[:features] = (params[:compound_features_hits].keys + params[:fingerprints][params[:training_compound2]].keys + params[:fingerprints][params[:training_compound]].keys).uniq + params[:features] = (params[:compound_features_hits].keys + params[:training_compound_features_hits].keys).uniq 2.times{ params[:mode] = "min" assert_in_delta OpenTox::Algorithm.p_sum_support(params), 12.8762796504849, 0.00001 @@ -44,32 +41,41 @@ class AlgorithmTest < Test::Unit::TestCase def test_tanimoto params = {} - params[:compound_features_hits] = { "c:c" => 10, "c:c:c" => 5, "O:N" => 2} params[:training_compound] = "http://localhost/compound/InChI=1S/CH2O/c1-2/h1H2" - params[:training_compound2] = "http://localhost/compound/InChI=1S/c1-2/h1H2" - params[:fingerprints] = {} - params[:fingerprints][params[:training_compound]] = {"c:c" => 6, "c:c:c" => 3, "O:O" => 2} - params[:fingerprints][params[:training_compound2]] = {"c:c" => 2, "O:N" => 2} weights = { "c:c" => 0.95, "c:c:c" => 0.96, "O:N" => 0.97, "O:O" => 0.98} + params[:compound_features_hits] = { "c:c" => 10, "c:c:c" => 5, "O:N" => 2} features_a = params[:compound_features_hits].keys - features_b = params[:fingerprints][params[:training_compound]].keys - features_c = params[:fingerprints][params[:training_compound2]].keys - + params[:training_compound_features_hits] = {"c:c" => 6, "c:c:c" => 3, "O:O" => 2} + features_b = params[:training_compound_features_hits].keys 2.times{ - params[:nr_hits] = nil + params[:nr_hits] = false #test without weights assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_b, nil, params), 0.5, 0.000001 - assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, nil, params), 0.666666666666667, 0.000001 #test with weights assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_b, weights, params), 0.498056105472291, 0.000001 - assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.666545393630348, 0.000001 #test with weights and nr_hits true - params[:nr_hits] = "true" + params[:nr_hits] = true assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_b, weights, params), 0.472823526091916, 0.000001 - assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.470450908604158, 0.000001 - } - end + } + + params[:training_compound_features_hits] = {"c:c" => 2, "O:N" => 2} + features_c = params[:training_compound_features_hits].keys + + 2.times{ + params[:nr_hits] = false + #test without weights + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, nil, params), 0.666666666666667, 0.000001 + + #test with weights + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.666545393630348, 0.000001 + + #test with weights and nr_hits true + params[:nr_hits] = true + assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.235749338271022, 0.000001 + } + + end end diff --git a/compound.rb b/compound.rb index 048e012..5165f31 100644 --- a/compound.rb +++ b/compound.rb @@ -39,4 +39,8 @@ class CompoundTest < Test::Unit::TestCase assert_equal "CCC=C(CC)N(=O)=O", c.to_smiles end + def test_match_hits + c = OpenTox::Compound.from_smiles "N=C=C1CCC(=F=FO)C1" + assert_equal ({"FF"=>2, "CC"=>10, "C"=>6, "C1CCCC1"=>10, "C=C"=>2}), c.match_hits(['CC','F=F','C','C=C','FF','C1CCCC1','OO']) + end end -- cgit v1.2.3 From 97a1154ee924074e8d22e2982a184432587e2530 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Thu, 21 Jul 2011 16:01:34 +0200 Subject: Added Tests --- lazar.rb | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/lazar.rb b/lazar.rb index b038619..1631da7 100644 --- a/lazar.rb +++ b/lazar.rb @@ -147,6 +147,48 @@ class LazarTest < Test::Unit::TestCase cleanup end + def test_regression_mlr_prop_model + create_model :dataset_uri => @@regression_training_dataset.uri, :prediction_algorithm => "local_mlr_prop" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 0.262, @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 0.168, @predictions.first.value(@compounds.first).round_to(3) + assert_equal 123, @predictions.first.neighbors(@compounds.first).size + assert_equal 131, @model.features.size + end + + def test_regression_mlr_prop_conf_stdev + create_model :dataset_uri => @@regression_training_dataset.uri, :prediction_algorithm => "local_mlr_prop", :conf_stdev => "true" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 0.056, @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 0.168, @predictions.first.value(@compounds.first).round_to(3) + assert_equal 123, @predictions.first.neighbors(@compounds.first).size + assert_equal 131, @model.features.size + end + + + def test_regression_mlr_prop_weighted_model + create_model :dataset_uri => @@regression_training_dataset.uri, :prediction_algorithm => "local_mlr_prop", :nr_hits => "true" + predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") + assert_equal 0.453, @predictions.first.confidence(@compounds.first).round_to(3) + assert_equal 0.265, @predictions.first.value(@compounds.first).round_to(3) + assert_equal 253, @predictions.first.neighbors(@compounds.first).size + assert_equal 131, @model.features.size + end + + def test_conf_stdev + params = {:sims => [0.6,0.72,0.8], :acts => [1,1,1], :neighbors => [1,1,1], :conf_stdev => true} # stdev = 0 + params2 = {:sims => [0.6,0.7,0.8], :acts => [3.4,2,0.6], :neighbors => [1,1,1,1], :conf_stdev => true } # stev ~ 1.4 + params3 = {:sims => [0.6,0.7,0.8], :acts => [1,1,1], :neighbors => [1,1,1], } + params4 = {:sims => [0.6,0.7,0.8], :acts => [3.4,2,0.6], :neighbors => [1,1,1] } + 2.times { + assert_in_delta OpenTox::Algorithm::Neighbors::get_confidence(params), 0.72, 0.0001 + assert_in_delta OpenTox::Algorithm::Neighbors::get_confidence(params2), 0.172617874759125, 0.0001 + assert_in_delta OpenTox::Algorithm::Neighbors::get_confidence(params3), 0.7, 0.0001 + assert_in_delta OpenTox::Algorithm::Neighbors::get_confidence(params4), 0.7, 0.0001 + } + end + + =begin def test_ambit_classification_model -- cgit v1.2.3 From 6d29bded8a59146755b07f07f35c44a19ec7d7da Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 22 Jul 2011 16:13:52 +0200 Subject: Adjusted Tests --- fminer.rb | 24 ++++++++++++------------ lazar.rb | 1 - 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/fminer.rb b/fminer.rb index c428aae..0d3f9d3 100644 --- a/fminer.rb +++ b/fminer.rb @@ -40,13 +40,13 @@ class FminerTest < Test::Unit::TestCase if c.to_s.scan('InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3').size > 0 e.each { |p,h| if p.to_s.scan('bbrc/40').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/29').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/18').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end } end @@ -77,13 +77,13 @@ class FminerTest < Test::Unit::TestCase if c.to_s.scan('InChI=1S/C5H10N2O2S/c1-4(10-3)7-9-5(8)6-2/h1-3H3,(H,6,8)').size > 0 e.each { |p,h| if p.to_s.scan('bbrc/86').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/54').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/32').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end } end @@ -238,13 +238,13 @@ end if c.to_s.scan('InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3').size > 0 e.each { |p,h| if p.to_s.scan('bbrc/113').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/99').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/77').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end } end @@ -276,13 +276,13 @@ end if c.to_s.scan('InChI=1S/C10H7NO2/c12-11(13)10-7-3-5-8-4-1-2-6-9(8)10/h1-7H').size > 0 e.each { |p,h| if p.to_s.scan('bbrc/37').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/38').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end if p.to_s.scan('bbrc/39').size>0 - count += 1 if h[0] == true + count += 1 if h[0] == 1 end } end diff --git a/lazar.rb b/lazar.rb index 1631da7..57f6842 100644 --- a/lazar.rb +++ b/lazar.rb @@ -82,7 +82,6 @@ class LazarTest < Test::Unit::TestCase def test_classification_model create_model :dataset_uri => @@classification_training_dataset.uri - puts @model.uri # single prediction predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN") # dataset activity -- cgit v1.2.3 From 4a84e96d4e40d11ed58ae810e7bfb9624c1222e6 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 28 Jul 2011 17:34:01 +0000 Subject: sdf upload test added, toxcreate upload test not yet working (gui upload works) --- dataset.rb | 12 ++++++++++++ toxcreate.rb | 16 ++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dataset.rb b/dataset.rb index 17d15f2..c10b7a1 100644 --- a/dataset.rb +++ b/dataset.rb @@ -6,6 +6,7 @@ require 'validate-owl' class DatasetTest < Test::Unit::TestCase def setup + @@subjectid = nil @datasets = { @@regression_training_dataset.uri => nil, @@classification_training_dataset.uri => { @@ -64,6 +65,17 @@ class DatasetTest < Test::Unit::TestCase hamster_carc? end + def test_sdf_with_multiple_features + uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"], File.read("data/CPDBAS_v5c_1547_29Apr2008part.sdf") ,{:accept => "text/uri-list",:content_type => "chemical/x-mdl-sdfile", :subjectid => @@subjectid}).to_s.chomp + assert_kind_of URI::HTTP, URI.parse(uri) + #puts uri + #uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"], File.read("/dataCPDBAS_v5c_1547_29Apr2008.sdf") ,{:accept => "text/uri-list",:content_type => "chemical/x-mdl-sdfile", :subjectid => @@subjectid}).to_s.chomp + #@dataset = OpenTox::Dataset.find uri, @@subjectid + ##@dataset = OpenTox::Dataset.new uri + #@dataset.load_all @@subjectid + #hamster_carc? + end + def test_rest_csv uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"], {:file => File.new("data/hamster_carcinogenicity.csv")} ,{:accept => "text/uri-list", :subjectid => @@subjectid}).to_s.chomp @dataset = OpenTox::Dataset.new uri, @@subjectid diff --git a/toxcreate.rb b/toxcreate.rb index a298c9c..0853bf6 100644 --- a/toxcreate.rb +++ b/toxcreate.rb @@ -168,6 +168,22 @@ class ToxCreateTest < Test::Unit::TestCase click_on "Create model" end end + # raises capybara errors, but gui works from browser + def test_11_toxcreate_sdf # works only with akephalos + Capybara.current_driver = :akephalos + #login(@browser, @user, @password) + visit CONFIG[:services]["opentox-toxcreate"] + assert page.has_content?('Upload training data') + attach_file('file', "./data/hamster_carcinogenicity.sdf") + click_on "Create model" + assert first("h2").has_content? "hamster_carcinogenicity" + time = 0 + while first(".model_status").has_no_content?("Completed") do + sleep 5 + time +=5 + end + assert first(".model_status").has_content?("Completed") + end =end -- cgit v1.2.3 From c6fa4a98cdf1b3ba87a6b58bb2961bed9bfa7a04 Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Fri, 29 Jul 2011 11:47:53 +0200 Subject: Added TUM clustering --- Rakefile | 2 +- algorithm.rb | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f183527..be97237 100644 --- a/Rakefile +++ b/Rakefile @@ -33,7 +33,7 @@ task :teardown do end #[:all, :feature, :dataset, :fminer, :lazar, :authorization, :validation].each do |t| -[:all, :feature, :dataset, :fminer, :lazar, :authorization, :parser, :validation ].each do |t| +[:all, :algorithm, :feature, :dataset, :fminer, :lazar, :authorization, :parser, :validation ].each do |t| task :teardown => t task t => :setup end diff --git a/algorithm.rb b/algorithm.rb index 4acfeec..3ff1304 100644 --- a/algorithm.rb +++ b/algorithm.rb @@ -75,7 +75,21 @@ class AlgorithmTest < Test::Unit::TestCase params[:nr_hits] = true assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.235749338271022, 0.000001 } + end + + def test_clustering + # Parameters + dataset_uri = @@classification_training_dataset.uri + query_compound = OpenTox::Compound.from_smiles("O1COc2cc(ccc12)C") + c = OpenTox::Algorithm::Similarity::StructuralClustering.new dataset_uri + cluster_datasets = Array.new + if c.trained? + c.get_clusters query_compound.uri + cluster_datasets = c.target_clusters_array end + assert_equal cluster_datasets.size, 2 + + end end -- cgit v1.2.3 From 1a065c0031e92137ae841c9876c564d49791fc35 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 29 Jul 2011 12:11:18 +0000 Subject: SDF export with data items --- data/CPDBAS_v5c_1547_29Apr2008part.sdf | 13553 +++++++++++++++++++++++++++++++ data/hamster_carcinogenicity.sdf | 2805 +++++++ dataset.rb | 16 +- 3 files changed, 16368 insertions(+), 6 deletions(-) create mode 100644 data/CPDBAS_v5c_1547_29Apr2008part.sdf create mode 100644 data/hamster_carcinogenicity.sdf diff --git a/data/CPDBAS_v5c_1547_29Apr2008part.sdf b/data/CPDBAS_v5c_1547_29Apr2008part.sdf new file mode 100644 index 0000000..d7eb740 --- /dev/null +++ b/data/CPDBAS_v5c_1547_29Apr2008part.sdf @@ -0,0 +1,13553 @@ + + + + 14 16 0 0 0 0 0 0 0 0 1 V2000 + 7.3615 -3.7543 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2131 -3.0918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2131 -1.7594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.0573 -1.0969 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9089 -1.7594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9089 -3.0918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.0573 -3.7543 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6428 -3.5041 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.8624 -2.4219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.5374 -2.2894 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.0748 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.7803 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1054 -0.1325 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6428 -1.3471 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 7 2 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 14 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 14 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 +M END +> +20001 + +> +1 + +> +20001 + +> +1_CPDBAS_v5c + +> +C11H9N3 + +> +183.2122 + +> +defined organic + +> +parent + +> +tested chemical + +> +A-alpha-C + +> +26148-68-5 + +> +single chemical compound + +> +blank + +> +9H-pyrido[2,3-b]indol-2-amine + +> +NC1C=CC2=C(N=1)NC3=CC=CC=C23 + +> +NC1C=CC2=C(N=1)NC3=CC=CC=C23 + +> +InChI=1/C11H9N3/c12-10-6-5-8-7-3-1-2-4-9(7)13-11(8)14-10/h1-6H,(H3,12,13,14)/f/h13H,12H2 + +> +FJTNLJLPLJDTRM-DXMPFREMCP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +active + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +49.8 + +> +0.271815959854202 + +> +35 + +> +TD50 is harmonic mean of more than one positive test + +> +liver; vascular system + +> +liver; vascular system + +> +blank + +> +active + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +blank + +> +active + +> +active + +> +multisite active; multisex active + +> +blank + +> +blank + +> +http://potency.berkeley.edu/chempages/A-alpha-C.html + +$$$$ + + + + 11 10 0 0 0 0 0 0 0 0 2 V2000 + 3.4800 -1.1526 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4800 -2.4613 0.0000 N 0 5 0 0 0 0 0 0 0 0 0 0 + 2.3349 -3.1008 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3349 -0.4610 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1749 -2.4613 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1749 -1.1526 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1344 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.8110 -1.1526 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3349 -4.4392 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.4610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4359 -2.2159 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 4 1 0 0 0 0 + 1 7 2 0 0 0 0 + 1 8 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 9 2 0 0 0 0 + 3 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 10 1 0 0 0 0 +M CHG 2 2 -1 11 1 +M END +> +40770 + +> +10606 + +> +30606 + +> +2_CPDBAS_v5c + +> +C4H4KNO4S + +> +201.2422 + +> +defined organic + +> +salt K + +> +tested chemical + +> +Acesulfame-K + +> +55589-62-3 + +> +single chemical compound + +> +parent [33665-90-6] + +> +potassium 6-methyl-4-oxo-4H-1,2,3-oxathiazin-3-ide 2,2-dioxide + +> +O=S([N-]C1=O)(OC(C)=C1)=O.[K+] + +> +O=S(NC1=O)(OC(C)=C1)=O + +> +InChI=1/C4H5NO4S.K/c1-3-2-4(6)5-10(7,8)9-3;/h2H,1H3,(H,5,6);/q;+1/p-1/fC4H4NO4S.K/q-1;m + +> +WBZFUFAFFUEMEI-COHKJUPYCC + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +Mouse added v5a; chemical added v5a + +> +http://potency.berkeley.edu/chempages/ACESULFAME-K.html + +$$$$ + + + + 3 2 0 0 0 0 0 0 0 0 1 V2000 + 2.3030 -0.6656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1515 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6656 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 +M END +> +20002 + +> +2 + +> +39224 + +> +3_CPDBAS_v5c + +> +C2H4O + +> +44.0526 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetaldehyde + +> +75-07-0 + +> +single chemical compound + +> +acetaldehyde + +> +CC=O + +> +CC=O + +> +InChI=1/C2H4O/c1-2-3/h2H,1H3 + +> +IKHGUXGNUITLKF-UHFFFAOYAB + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; hamster + +> +inactive + +> +153 + +> +3.4731207692622 + +> +20 + +> +TD50 is harmonic mean of more than one positive test + +> +nasal cavity + +> +nasal cavity + +> +active + +> +565 + +> +12.8255766969486 + +> +1 + +> +TD50 is harmonic mean of more than one positive test + +> +nasal cavity; oral cavity + +> +oral cavity + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +http://potency.berkeley.edu/chempages/ACETALDEHYDE.html + +$$$$ + + + + 7 6 0 0 0 0 0 0 0 0 1 V2000 + 5.7637 -1.9942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6110 -1.3314 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4582 -1.9942 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3055 -1.3314 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3055 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1527 -1.9942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3314 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 2 0 0 0 0 +M END +> +20003 + +> +3 + +> +39225 + +> +4_CPDBAS_v5c + +> +C4H8N2O + +> +100.12 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetaldehyde methylformylhydrazone + +> +16568-02-8 + +> +single chemical compound + +> +N'-[(1E)-ethylidene]-N-methylformic hydrazide + +> +CC=NN(C)C=O + +> +CC=NN(C)C=O + +> +InChI=1/C4H8N2O/c1-3-5-6(2)4-7/h3-4H,1-2H3/b5-3+ + +> +IMAGWKUTFZRWSB-HWKANZROBR + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +inactive + +> +2.51 + +> +2.50699161006792E-02 + +> +46 + +> +TD50 is harmonic mean of more than one positive test + +> +lung; preputial gland + +> +clitoral gland; lung; stomach + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/ACETALDEHYDE%20METHYLFORMYLHYDRAZONE.html + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3061 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 -0.6638 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 +M END +> +20004 + +> +4 + +> +20004 + +> +5_CPDBAS_v5c + +> +C2H5NO + +> +59.0672 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetaldoxime + +> +107-29-9 + +> +single chemical compound + +> +(1E)-acetaldehyde oxime + +> +CC=NO + +> +CC=NO + +> +InChI=1/C2H5NO/c1-2-3-4/h2,4H,1H3/b3-2+ + +> +FZENGILVLUJGJX-NSCUHMNNBP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/ACETALDOXIME.html + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 1.9950 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3292 -1.1518 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9950 -2.3037 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1518 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 +M END +> +20005 + +> +5 + +> +20005 + +> +6_CPDBAS_v5c + +> +C2H5NO + +> +59.0672 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetamide + +> +60-35-5 + +> +single chemical compound + +> +acetamide + +> +CC(=O)N + +> +CC(=O)N + +> +InChI=1/C2H5NO/c1-2(3)4/h1H3,(H2,3,4)/f/h3H2 + +> +DLFVBJFMPXGRIB-ZZOWFUDICC + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +180 + +> +3.04737654739009 + +> +21 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +3010 + +> +50.9589078202454 + +> +9 + +> +hematopoietic system + +> +no positive results + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +http://potency.berkeley.edu/chempages/ACETAMIDE.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 3.8512 -1.8702 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.9346 -2.8163 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5407 -0.5987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1522 -2.2102 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.6410 -2.4689 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2397 -0.2587 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.0983 -1.2862 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2936 -1.2049 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7583 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3919 -1.6114 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.8575 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 1 0 0 0 0 + 2 5 1 0 0 0 0 + 3 6 2 0 0 0 0 + 4 7 1 0 0 0 0 + 5 8 2 0 0 0 0 + 6 8 1 0 0 0 0 + 7 9 1 0 0 0 0 + 7 10 2 0 0 0 0 + 8 11 1 0 0 0 0 +M END +> +20006 + +> +6 + +> +20006 + +> +7_CPDBAS_v5c + +> +C8H9NO2 + +> +151.1626 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetaminophen + +> +103-90-2 + +> +single chemical compound + +> +N-(4-hydroxyphenyl)acetamide + +> +C1(=CC=C(C=C1)O)NC(C)=O + +> +C1(=CC=C(C=C1)O)NC(C)=O + +> +InChI=1/C8H9NO2/c1-6(10)9-7-2-4-8(11)5-3-7/h2-5,11H,1H3,(H,9,10)/f/h9H + +> +RZVAJINKPMORJF-BGGKNDAXCW + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +495 + +> +3.27461951567385 + +> +20 + +> +TD50 is harmonic mean of more than one positive test + +> +liver; urinary bladder + +> +liver; urinary bladder + +> +active + +> +1620 + +> +10.7169365967508 + +> +17 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TR 394; final call in CPDB differs due to additional data + +> +http://potency.berkeley.edu/chempages/ACETAMINOPHEN.html + +$$$$ + + + + 22 23 0 0 0 0 0 0 0 0 1 V2000 + 5.1434 -4.1211 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9933 -3.4609 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 2.8432 -2.7900 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3224 -4.6110 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9913 -4.6110 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3311 -5.7610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9913 -6.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3224 -6.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9933 -5.7610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3311 -8.0718 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9913 -9.2219 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -8.0718 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6642 -2.3002 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9953 -2.3002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6555 -3.4609 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6555 -1.1501 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9866 -1.1501 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6575 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9780 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6489 -1.1501 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9780 -2.3002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6575 -2.3002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 2 13 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 10 1 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 2 0 0 0 0 + 10 12 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 2 0 0 0 0 + 14 16 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 1 0 0 0 0 + 17 22 1 0 0 0 0 + 18 19 1 0 0 0 0 + 19 20 1 0 0 0 0 + 20 21 1 0 0 0 0 + 21 22 1 0 0 0 0 +M END +> +20007 + +> +7 + +> +20007 + +> +8_CPDBAS_v5c + +> +C15H20N2O4S + +> +324.3953 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetohexamide + +> +968-81-0 + +> +single chemical compound + +> +4-acetyl-N-[(cyclohexylamino)carbonyl]benzenesulfonamide + +> +O=S(=O)(C1=CC=C(C=C1)C(=O)C)NC(=O)NC2CCCCC2 + +> +O=S(=O)(C1=CC=C(C=C1)C(=O)C)NC(=O)NC2CCCCC2 + +> +InChI=1/C15H20N2O4S/c1-11(18)12-7-9-14(10-8-12)22(20,21)17-15(19)16-13-5-3-2-4-6-13/h7-10,13H,2-6H2,1H3,(H2,16,17,19)/f/h16-17H + +> +VGZSUPCWNCWDAN-XQMQJMAZCC + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 050 + +> +http://potency.berkeley.edu/chempages/ACETOHEXAMIDE.html + +$$$$ + + + + 18 19 0 0 0 0 0 0 0 0 2 V2000 + 11.1272 -2.0879 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.1272 -0.7492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.2816 -2.7511 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9727 -2.7511 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8182 -2.0879 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6760 -2.7511 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5286 -4.0652 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2268 -4.3477 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5636 -3.1932 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4601 -2.2107 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2372 -3.0581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3529 -4.0407 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1370 -3.5003 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2721 -2.1861 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5740 -1.9037 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2896 -1.2896 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.6335 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.6335 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 10 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 15 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 14 16 1 0 0 0 0 + 16 17 2 0 0 0 0 + 16 18 1 0 0 0 0 +M CHG 2 16 1 18 -1 +M END +> +20008 + +> +8 + +> +20008 + +> +9_CPDBAS_v5c + +> +C10H10N4O3S + +> +266.274 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetone[4-(5-nitro-2-furyl)-2-thiazolyl] hydrazone + +> +18523-69-8 + +> +single chemical compound + +> +propan-2-one [5-(5-nitrofuran-2-yl)-1,3-thiazol-2-yl]hydrazone + +> +C(/C)(C)=N\NC1=NC=C(S1)C2=CC=C(O2)[N+](=O)[O-] + +> +C(/C)(C)=N\NC1=NC=C(S1)C2=CC=C(O2)[N+](=O)[O-] + +> +InChI=1/C10H10N4O3S/c1-6(2)12-13-10-11-5-8(18-10)7-3-4-9(17-7)14(15)16/h3-5H,1-2H3,(H,11,13)/f/h13H + +> +CUWVNOSSZYUJAE-NDKGDYFDCK + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +6.05 + +> +2.27209566086062E-02 + +> +43 + +> +stomach + +> +active + +> +active + +> +http://potency.berkeley.edu/chempages/ACETONE[4-(5-NITRO-2-FURYL)-2-THIAZOLYL]HYDRAZONE.html + +$$$$ + + + + 3 2 0 0 0 0 0 0 0 0 1 V2000 + 2.6600 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 3 0 0 0 0 +M END +> +20009 + +> +9 + +> +20009 + +> +10_CPDBAS_v5c + +> +C2H3N + +> +41.0519 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetonitrile + +> +75-05-8 + +> +single chemical compound + +> +acetonitrile + +> +CC#N + +> +CC#N + +> +InChI=1/C2H3N/c1-2-3/h1H3 + +> +WEVYAHXRMPXWCK-UHFFFAOYAJ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 447 + +> +http://potency.berkeley.edu/chempages/ACETONITRILE.html + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 3.4567 -1.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1511 -1.9945 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3308 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 5 1 0 0 0 0 + 3 4 1 0 0 0 0 +M END +> +20010 + +> +10 + +> +20010 + +> +11_CPDBAS_v5c + +> +C3H7NO + +> +73.0938 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acetoxime + +> +127-06-0 + +> +single chemical compound + +> +propan-2-one oxime + +> +CC(=NO)C + +> +CC(=NO)C + +> +InChI=1/C3H7NO/c1-3(2)4-5/h5H,1-2H3 + +> +PXAJQJMDEXJWFB-UHFFFAOYAK + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +12.1 + +> +0.165540716175654 + +> +34 + +> +liver + +> +no positive results + +> +active + +> +active + +> +http://potency.berkeley.edu/chempages/ACETOXIME.html + +$$$$ + + + + 16 17 0 0 0 0 0 0 0 0 1 V2000 + 1.1551 -0.6716 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9126 -2.6594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9126 -3.9935 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.1751 -2.2475 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.1751 -4.4054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.9541 -3.3309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7575 -1.9968 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7575 -4.6561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 -0.6716 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3012 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6024 -2.6594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6024 -3.9935 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 -1.9968 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3012 -2.6594 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1551 -1.9968 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 15 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 2 7 1 0 0 0 0 + 3 5 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 6 1 0 0 0 0 + 5 6 1 0 0 0 0 + 7 11 2 0 0 0 0 + 8 12 2 0 0 0 0 + 9 13 1 0 0 0 0 + 9 10 2 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 +M END +> +20011 + +> +11 + +> +39226 + +> +12_CPDBAS_v5c + +> +C12H12O4 + +> +220.2213 + +> +defined organic + +> +parent + +> +tested chemical + +> +1'-Acetoxysafrole + +> +34627-78-6 + +> +single chemical compound + +> +1-(1,3-benzodioxol-5-yl)prop-2-en-1-yl acetate + +> +O=C(C)OC(C2=CC1=C(C=C2)OCO1)C=C + +> +O=C(C)OC(C2=CC1=C(C=C2)OCO1)C=C + +> +InChI=1/C12H12O4/c1-3-10(16-8(2)13)9-4-5-11-12(6-9)15-7-14-11/h3-6,10H,1,7H2,2H3 + +> +TXUCQVJZBXYDKH-UHFFFAOYAY + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +25 + +> +0.113522170652884 + +> +35 + +> +TD50 is harmonic mean of more than one positive test + +> +stomach + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +http://potency.berkeley.edu/chempages/1'-ACETOXYSAFROLE.html + +$$$$ + + + + 13 13 0 0 0 0 0 0 0 0 1 V2000 + 2.6636 -2.3090 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9977 -1.1588 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6659 -1.1588 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3090 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9953 -2.3090 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6526 -1.1588 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9844 -1.1588 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6503 -2.3090 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9844 -3.4592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6526 -3.4592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9820 -2.3090 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6479 -3.4592 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 2 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 9 12 1 0 0 0 0 + 10 11 2 0 0 0 0 + 12 13 1 0 0 0 0 +M END +> +20012 + +> +12 + +> +20012 + +> +13_CPDBAS_v5c + +> +C9H12N2O2 + +> +180.206 + +> +defined organic + +> +parent + +> +tested chemical + +> +N'-Acetyl-4-(hydroxymethyl) phenylhydrazine + +> +65734-38-5 + +> +single chemical compound + +> +N'-[4-(hydroxymethyl)phenyl]acetohydrazide + +> +N(NC(C)=O)C1=CC=C(C=C1)CO + +> +N(NC(C)=O)C1=CC=C(C=C1)CO + +> +InChI=1/C9H12N2O2/c1-7(13)10-11-9-4-2-8(6-12)3-5-9/h2-5,11-12H,6H2,1H3,(H,10,13)/f/h10H + +> +UFFJUAYKLIGSJF-KZFATGLACR + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +241 + +> +1.33735835654751 + +> +27 + +> +TD50 is harmonic mean of more than one positive test + +> +lung; vascular system + +> +lung; vascular system + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/N'-ACETYL-4-(HYDROXYMETHYL)PHENYLHYDRAZINE.html + +$$$$ + + + + 13 13 0 0 0 0 0 0 0 0 1 V2000 + 3.4560 -1.9979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3040 -1.3292 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1520 -1.9979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3292 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1520 -3.3271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6000 -1.3292 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7520 -1.9979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9040 -1.3292 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0560 -1.9979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0560 -3.3271 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9040 -3.9877 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7520 -3.3271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 6 13 2 0 0 0 0 + 7 8 2 0 0 0 0 + 7 12 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 +M END +> +20013 + +> +13 + +> +20013 + +> +14_CPDBAS_v5c + +> +C8H9N3O2 + +> +179.178 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Acetyl-2-isonicotinoylhydrazine + +> +1078-38-2 + +> +single chemical compound + +> +N'-acetylpyridine-4-carbohydrazide + +> +N(NC(C)=O)C(C1=CC=NC=C1)=O + +> +N(NC(C)=O)C(C1=CC=NC=C1)=O + +> +InChI=1/C8H9N3O2/c1-6(12)10-11-8(13)7-2-4-9-5-3-7/h2-5H,1H3,(H,10,12)(H,11,13)/f/h10-11H + +> +CVBGNAKQQUWBQV-PZWAIHAUCF + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +330 + +> +1.84174396410274 + +> +25 + +> +TD50 is harmonic mean of more than one positive test + +> +lung + +> +lung + +> +active + +> +active + +> +active + +> +multisex active + +> +http://potency.berkeley.edu/chempages/1-ACETYL-2-ISONICOTINOYLHYDRAZINE.html + +$$$$ + + + + 12 12 0 0 0 0 0 0 0 0 1 V2000 + 1.9922 -4.6067 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6563 -3.4580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9922 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6563 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9922 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9905 -1.1547 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6546 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9905 -3.4580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9827 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6641 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4580 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 8 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 10 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 9 1 0 0 0 0 + 10 11 2 0 0 0 0 + 10 12 1 0 0 0 0 +M END +> +20014 + +> +14 + +> +20014 + +> +15_CPDBAS_v5c + +> +C8H8O4 + +> +168.1488 + +> +defined organic + +> +parent + +> +tested chemical + +> +3-Acetyl-6-methyl-2,4-pyrandione + +> +520-45-6 + +> +single chemical compound + +> +tautomers + +> +3-acetyl-6-methyl-2H-pyran-2,4(3H)-dione + +> +O=C1C(C(=O)OC(=C1)C)C(=O)C + +> +O=C1C(C(=O)OC(=C1)C)C(=O)C + +> +InChI=1/C8H8O4/c1-4-3-6(10)7(5(2)9)8(11)12-4/h3,7H,1-2H3 + +> +PGRHXDWITVMQBC-UHFFFAOYAH + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/3-ACETYL-6-METHYL-2,4-PYRANDIONE.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 3.9907 -2.3079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6605 -2.3079 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9953 -1.1573 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6651 -1.1573 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6558 -1.1573 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9860 -1.1573 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6511 -2.3079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9860 -3.4586 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6558 -3.4586 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 2 0 0 0 0 + 1 11 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 +M END +> +20015 + +> +15 + +> +20015 + +> +16_CPDBAS_v5c + +> +C8H10N2O + +> +150.1778 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Acetyl-2-phenylhydrazine + +> +114-83-0 + +> +single chemical compound + +> +N'-phenylacetohydrazide + +> +C1(NNC(C)=O)=CC=CC=C1 + +> +C1(NNC(C)=O)=CC=CC=C1 + +> +InChI=1/C8H10N2O/c1-7(11)9-10-8-5-3-2-4-6-8/h2-6,10H,1H3,(H,9,11)/f/h9H + +> +UICBCXONCUFSOI-BGGKNDAXCP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +active + +> +51.2 + +> +0.34092921856626 + +> +34 + +> +TD50 is harmonic mean of more than one positive test + +> +vascular system + +> +vascular system + +> +active + +> +active + +> +active + +> +multisex active + +> +http://potency.berkeley.edu/chempages/1-ACETYL-2-PHENYLHYDRAZINE.html + +$$$$ + + + + 16 17 0 0 0 0 0 0 0 0 1 V2000 + 1.9954 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3269 -1.1473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1473 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9954 -2.3046 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3223 -2.3046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9907 -1.1473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3176 -1.1473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9861 -2.3046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3176 -3.4520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9907 -3.4520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3130 -2.3046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9814 -1.1473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.3083 -1.1473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9768 -2.3046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.3083 -3.4520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9814 -3.4520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 8 11 1 0 0 0 0 + 9 10 2 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +20016 + +> +16 + +> +39243 + +> +17_CPDBAS_v5c + +> +C14H13NO + +> +211.2628 + +> +defined organic + +> +parent + +> +tested chemical + +> +4-Acetylaminobiphenyl + +> +4075-79-0 + +> +single chemical compound + +> +N-biphenyl-4-ylacetamide + +> +CC(=O)NC1=CC=C(C=C1)C2=CC=CC=C2 + +> +CC(=O)NC1=CC=C(C=C1)C2=CC=CC=C2 + +> +InChI=1/C14H13NO/c1-11(16)15-14-9-7-13(8-10-14)12-5-3-2-4-6-12/h2-10H,1H3,(H,15,16)/f/h15H + +> +SVLDILRDQOVJED-YAQRNVERCM + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +1.18 + +> +5.58546038393887E-03 + +> +49 + +> +mammary gland + +> +active + +> +active + +> +http://potency.berkeley.edu/chempages/4-ACETYLAMINOBIPHENYL.html + +$$$$ + + + + 17 19 0 0 0 0 0 0 0 0 1 V2000 + 8.3884 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.7257 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.3884 -4.6052 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3920 -3.4560 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7293 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3955 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5064 -3.2883 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2900 -2.7514 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0737 -3.2883 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.5081 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.1426 -1.1828 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3505 -0.6459 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4326 -1.4260 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7328 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3955 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7293 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3920 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 17 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 14 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 13 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 2 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 +M END +> +20017 + +> +17 + +> +20017 + +> +18_CPDBAS_v5c + +> +C15H13NO + +> +223.2738 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Acetylaminofluorene + +> +28314-03-6 + +> +single chemical compound + +> +N-9H-fluoren-1-ylacetamide + +> +CC(=O)NC1=C2CC3=CC=CC=C3C2=CC=C1 + +> +CC(=O)NC1=C2CC3=CC=CC=C3C2=CC=C1 + +> +InChI=1/C15H13NO/c1-10(17)16-15-8-4-7-13-12-6-3-2-5-11(12)9-14(13)15/h2-8H,9H2,1H3,(H,16,17)/f/h16H + +> +POECHIXSIXBYKI-WYUMXYHSCQ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/1-ACETYLAMINOFLUORENE.html + +$$$$ + + + + 17 19 0 0 0 0 0 0 0 0 1 V2000 + 5.7640 -1.7698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0213 -1.3540 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8046 -2.4275 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1296 -2.2921 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.6712 -1.0735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8878 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5629 -0.1451 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0213 -3.5106 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7640 -3.0948 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6035 -3.7621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4526 -3.0948 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4526 -1.7698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6035 -1.1025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3017 -3.7621 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1509 -3.0948 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.7621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1509 -1.7698 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 9 1 0 0 0 0 + 1 13 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 14 1 0 0 0 0 + 12 13 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 15 17 2 0 0 0 0 +M END +> +20018 + +> +18 + +> +39227 + +> +19_CPDBAS_v5c + +> +C15H13NO + +> +223.2698 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Acetylaminofluorene + +> +53-96-3 + +> +single chemical compound + +> +N-9H-fluoren-2-ylacetamide + +> +C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O + +> +C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O + +> +InChI=1/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17)/f/h16H + +> +CZIHNRWJTSTCEX-WYUMXYHSCF + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse; hamster; rhesus + +> +active + +> +1.22 + +> +5.46424102140101E-03 + +> +49 + +> +TD50 is harmonic mean of more than one positive test + +> +liver; mammary gland; skin + +> +liver; mammary gland; skin + +> +active + +> +7.59 + +> +3.39947453708473E-02 + +> +45 + +> +TD50 is harmonic mean of more than one positive test; greater than ten-fold variation among TD50 values for positive results + +> +liver; urinary bladder + +> +liver; urinary bladder + +> +active + +> +17.4 + +> +7.79326178462112E-02 + +> +53 + +> +liver + +> +no positive results + +> +active + +> +no positive results + +> +no positive results for Rhesus + +> +inactive + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +http://potency.berkeley.edu/chempages/2-ACETYLAMINOFLUORENE.html + +$$$$ + + + + 17 19 0 0 0 0 0 0 0 0 1 V2000 + 2.3012 -3.9858 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2905 -4.8819 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.7528 -6.0934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5342 -7.1688 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.8533 -7.0326 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3981 -5.8139 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6167 -4.7385 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.4266 -5.9572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1542 -4.6525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.9858 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1542 -1.9929 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3012 -2.6596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4553 -1.9929 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4553 -0.6667 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3012 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6023 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 9 1 0 0 0 0 + 1 13 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 15 17 2 0 0 0 0 +M END +> +20019 + +> +19 + +> +20019 + +> +20_CPDBAS_v5c + +> +C15H13NO + +> +223.2698 + +> +defined organic + +> +parent + +> +tested chemical + +> +4-Acetylaminofluorene + +> +28322-02-3 + +> +single chemical compound + +> +N-9H-fluoren-4-ylacetamide + +> +C12C3=C(C=CC=C3)CC1=CC=CC=2NC(C)=O + +> +C12C3=C(C=CC=C3)CC1=CC=CC=2NC(C)=O + +> +InChI=1/C15H13NO/c1-10(17)16-14-8-4-6-12-9-11-5-2-3-7-13(11)15(12)14/h2-8H,9H2,1H3,(H,16,17)/f/h16H + +> +PHPWISAFHNEMSR-WYUMXYHSCU + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/4-ACETYLAMINOFLUORENE.html + +$$$$ + + + + 14 14 0 0 0 0 0 0 0 0 1 V2000 + 5.7595 -0.6749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7595 -1.9876 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6224 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6224 -2.6625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4853 -0.6749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4853 -1.9876 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9335 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0891 -0.6564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2447 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0891 -1.9876 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3112 -2.6625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1556 -1.9876 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1556 -0.6564 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 2 0 0 0 0 + 1 7 1 0 0 0 0 + 2 4 2 0 0 0 0 + 3 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 10 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 12 14 2 0 0 0 0 +M END +> +20020 + +> +20 + +> +20020 + +> +21_CPDBAS_v5c + +> +C10H11NO3 + +> +193.1992 + +> +defined organic + +> +parent + +> +tested chemical + +> +4-Acetylaminophenylacetic acid + +> +18699-02-0 + +> +single chemical compound + +> +[4-(acetylamino)phenyl]acetic acid + +> +O=C(O)Cc1ccc(cc1)NC(C)=O + +> +O=C(O)Cc1ccc(cc1)NC(C)=O + +> +InChI=1/C10H11NO3/c1-7(12)11-9-4-2-8(3-5-9)6-10(13)14/h2-5H,6H2,1H3,(H,11,12)(H,13,14)/f/h11,13H + +> +MROJXXOCABQVEF-KZZMUEETCP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +Rat added v2a; Mouse added v2a + +> +http://potency.berkeley.edu/chempages/4-ACETYLAMINOPHENYLACETIC%20ACID.html + +$$$$ + + + + 10 9 0 0 1 0 0 0 0 0 1 V2000 + 2.3100 -1.9854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4651 -1.3307 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3100 -3.3213 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4651 -3.9920 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4651 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4651 -5.3227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6148 -1.9854 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9854 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1710 -1.3307 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6148 -3.3213 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 1 0 0 0 + 1 9 1 0 0 0 0 + 2 5 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 6 2 0 0 0 0 + 4 10 1 0 0 0 0 + 8 9 1 0 0 0 0 +M END +> +20021 + +> +21 + +> +20021 + +> +22_CPDBAS_v5c + +> +C5H9NO3S + +> +163.1949 + +> +defined organic + +> +parent + +> +tested chemical + +> +N-acetylcysteine + +> +616-91-1 + +> +single chemical compound + +> +stereochem + +> +N-acetyl-L-cysteine + +> +CC(=O)N[C@@H](CS)C(=O)O + +> +CC(=O)N[C@@H](CS)C(=O)O + +> +InChI=1/C5H9NO3S/c1-3(7)6-4(2-10)5(8)9/h4,10H,2H2,1H3,(H,6,7)(H,8,9)/t4-/m0/s1/f/h6,8H + +> +PWKSKIMOESPYIA-JVBVHTJODB + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +Rat added v2a + +> +http://potency.berkeley.edu/chempages/N-ACETYLCYSTEINE.html + +$$$$ + + + + 24 25 0 0 0 0 0 0 0 0 2 V2000 + 11.5157 -1.9922 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3641 -1.3358 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3641 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2126 -1.9922 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2126 -3.3280 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0610 -3.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9094 -3.3280 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9094 -1.9922 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0610 -1.3358 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7578 -1.3358 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6063 -1.9922 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6063 -3.3280 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4547 -3.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3031 -3.3280 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3031 -1.9922 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4547 -1.3358 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4547 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1516 -3.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.4837 -2.8444 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 1.8195 -5.1475 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.6523 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3641 -3.9959 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 10.3641 -5.3203 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5157 -3.3280 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 22 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 14 18 1 0 0 0 0 + 15 16 2 0 0 0 0 + 16 17 1 0 0 0 0 + 18 19 1 0 0 0 0 + 18 20 1 0 0 0 0 + 18 21 1 0 0 0 0 + 22 23 2 0 0 0 0 + 22 24 1 0 0 0 0 +M CHG 2 22 1 24 -1 +M END +> +20022 + +> +22 + +> +20022 + +> +23_CPDBAS_v5c + +> +C14H7ClF3NO5 + +> +361.6573 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acifluorfen + +> +50594-66-6 + +> +single chemical compound + +> +5-{[2-chloro-4-(trifluoromethyl)phenyl]oxy}-2-nitrobenzoic acid + +> +OC(=O)C1=C(C=CC(=C1)OC2=CC=C(C=C2Cl)C(F)(F)F)[N+](=O)[O-] + +> +OC(=O)C1=C(C=CC(=C1)OC2=CC=C(C=C2Cl)C(F)(F)F)[N+](=O)[O-] + +> +InChI=1/C14H7ClF3NO5/c15-10-5-7(14(16,17)18)1-4-12(10)24-8-2-3-11(19(22)23)9(6-8)13(20)21/h1-6H,(H,20,21)/f/h20H + +> +NUFNQYOELLVIPL-UYBDAZJACV + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +141 + +> +0.389871848293951 + +> +33 + +> +TD50 is harmonic mean of more than one positive test + +> +liver; stomach + +> +liver; stomach + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/ACIFLUORFEN.html + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3061 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 -0.6638 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 +M END +> +20023 + +> +23 + +> +20023 + +> +24_CPDBAS_v5c + +> +C3H4O + +> +56.0633 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acrolein + +> +107-02-8 + +> +single chemical compound + +> +acrylaldehyde + +> +C=CC=O + +> +C=CC=O + +> +InChI=1/C3H4O/c1-2-3-4/h2-3H,1H2 + +> +HGINCPLSRVDWNT-UHFFFAOYAQ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +http://potency.berkeley.edu/chempages/ACROLEIN.html + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.9953 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1520 -2.6588 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3040 -1.9953 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3040 -0.6635 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1520 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4560 -2.6588 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6080 -1.9953 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6080 -0.6635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 +M END +> +20024 + +> +24 + +> +20024 + +> +25_CPDBAS_v5c + +> +C7H14O2 + +> +130.1864 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acrolein diethylacetal + +> +3054-95-3 + +> +single chemical compound + +> +3,3-bis(ethyloxy)prop-1-ene + +> +C=CC(OCC)OCC + +> +C=CC(OCC)OCC + +> +InChI=1/C7H14O2/c1-4-7(8-5-2)9-6-3/h4,7H,1,5-6H2,2-3H3 + +> +MCIPQLOKVXSHTD-UHFFFAOYAI + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/ACROLEIN%20DIETHYLACETAL.html + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 4.6099 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3050 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1525 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6638 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 +M END +> +20025 + +> +25 + +> +20025 + +> +26_CPDBAS_v5c + +> +C3H5NO + +> +71.0786 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acrolein oxime + +> +5314-33-0 + +> +single chemical compound + +> +(1E)-prop-2-enal oxime + +> +C=C/C=N/O + +> +C=C/C=N/O + +> +InChI=1/C3H5NO/c1-2-3-4-5/h2-3,5H,1H2/b4-3+ + +> +KMNIXISXZFPRDC-ONEGZZNKBI + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/ACROLEIN%20OXIME.html + +$$$$ + + + + 24 27 0 0 0 0 0 0 0 0 1 V2000 + 6.9100 -5.0061 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7600 -5.6730 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -5.0061 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4598 -5.6730 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3001 -5.0061 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1501 -5.6730 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -5.0061 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3001 -3.6821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4598 -3.0153 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -3.6821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7600 -3.0153 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7600 -1.6816 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -1.0148 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4598 -1.6816 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7498 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4604 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4598 -7.0067 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -7.6735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7600 -7.0067 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9100 -7.6735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9100 -8.9975 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7600 -9.6644 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -8.9975 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3001 -7.6735 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 19 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 10 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 17 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 8 2 0 0 0 0 + 6 7 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 14 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 1 0 0 0 0 + 13 15 1 0 0 0 0 + 13 16 1 0 0 0 0 + 17 18 1 0 0 0 0 + 17 24 2 0 0 0 0 + 18 19 2 0 0 0 0 + 18 23 1 0 0 0 0 + 19 20 1 0 0 0 0 + 20 21 2 0 0 0 0 + 21 22 1 0 0 0 0 + 22 23 2 0 0 0 0 +M END +> +20026 + +> +26 + +> +20026 + +> +27_CPDBAS_v5c + +> +C20H19NO3 + +> +321.3698 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acronycine + +> +7008-42-6 + +> +single chemical compound + +> +3,3,12-trimethyl-6-(methyloxy)-3,12-dihydro-7H-pyrano[2,3-c]acridin-7-one + +> +CN1C2=C(C(OC)=CC3=C2C=CC(O3)(C)C)C(C4=C1C=CC=C4)=O + +> +CN1C2=C(C(OC)=CC3=C2C=CC(O3)(C)C)C(C4=C1C=CC=C4)=O + +> +InChI=1/C20H19NO3/c1-20(2)10-9-13-15(24-20)11-16(23-4)17-18(13)21(3)14-8-6-5-7-12(14)19(17)22/h5-11H,1-4H3 + +> +SMPZPKRDRQOOHT-UHFFFAOYAD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +0.505 + +> +1.57139843258452E-03 + +> +55 + +> +positive test results only by intraperitoneal or intravenous injection; TD50 is harmonic mean of more than one positive test + +> +bone; peritoneal cavity + +> +mammary gland; peritoneal cavity + +> +active + +> +0 + +> +NTP bioassay inadequate + +> +NTP bioassay inadequate + +> +NTP bioassay inadequate + +> +inconclusive + +> +active + +> +active + +> +multisite active; multisex active + +> +TR 49 + +> +http://potency.berkeley.edu/chempages/ACRONYCINE.html + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 3.4567 -1.9945 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1511 -1.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 +M END +> +20027 + +> +27 + +> +20027 + +> +28_CPDBAS_v5c + +> +C3H5NO + +> +71.0779 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acrylamide + +> +79-06-1 + +> +single chemical compound + +> +acrylamide + +> +NC(=O)C=C + +> +NC(=O)C=C + +> +InChI=1/C3H5NO/c1-2-3(4)5/h2H,1H2,(H2,4,5)/f/h4H2 + +> +HRPVXLWXLXDGHG-LGEMBHMGCJ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +inactive + +> +3.75 + +> +0.052759015108775 + +> +39 + +> +TD50 is harmonic mean of more than one positive test + +> +nervous system; peritoneal cavity; thyroid gland + +> +clitoral gland; mammary gland; nervous system; oral cavity; thyroid gland; uterus + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +TD50_Rat modified v3a + +> +http://potency.berkeley.edu/chempages/ACRYLAMIDE.html + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 3.4567 -1.9945 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1511 -1.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 +M END +> +20028 + +> +28 + +> +39229 + +> +29_CPDBAS_v5c + +> +C3H4O2 + +> +72.0627 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acrylic acid + +> +79-10-7 + +> +single chemical compound + +> +acrylic acid + +> +OC(=O)C=C + +> +OC(=O)C=C + +> +InChI=1/C3H4O2/c1-2-3(4)5/h2H,1H2,(H,4,5)/f/h4H + +> +NIXOWILDQLNWCW-JLSKMEETCA + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/ACRYLIC%20ACID.html + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6652 -1.1508 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9956 -1.1508 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3260 -1.1508 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 3 0 0 0 0 +M END +> +20029 + +> +29 + +> +20029 + +> +30_CPDBAS_v5c + +> +C3H3N + +> +53.0626 + +> +defined organic + +> +parent + +> +tested chemical + +> +Acrylonitrile + +> +107-13-1 + +> +single chemical compound + +> +acrylonitrile + +> +C=CC#N + +> +C=CC#N + +> +InChI=1/C3H3N/c1-2-3-4/h2H,1H2 + +> +NLHHRLWOUZZQLW-UHFFFAOYAG + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +16.9 + +> +0.318491743714028 + +> +31 + +> +TD50 is harmonic mean of more than one positive test; greater than ten-fold variation among TD50 values for positive results + +> +ear Zymbals gland; nervous system; oral cavity; small intestine; stomach + +> +ear Zymbals gland; mammary gland; nasal cavity; nervous system; oral cavity; small intestine; stomach + +> +active + +> +6.32 + +> +0.119104604749861 + +> +39 + +> +TD50 is harmonic mean of more than one positive test + +> +harderian gland; stomach + +> +harderian gland; stomach + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +Mouse added v5a + +> +http://potency.berkeley.edu/chempages/ACRYLONITRILE.html + +$$$$ + + + + 93 99 0 0 1 0 0 0 0 0 1 V2000 + 11.4975 -12.9190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.4975 -14.1106 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5218 -12.3337 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.4523 -12.3337 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.4523 -14.7168 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5218 -14.7168 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5218 -11.1421 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5670 -12.9190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.4279 -12.9190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.4279 -14.1106 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5670 -14.1106 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5218 -15.9083 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5670 -10.5359 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 11.4975 -10.5359 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 14.5914 -12.3337 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.3827 -12.3337 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.3827 -14.7168 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.5914 -14.7168 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.3827 -11.1421 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3584 -12.9190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3584 -14.1106 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.3827 -15.9083 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3584 -10.5359 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.4279 -10.5359 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5670 -9.2816 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.4800 -8.6545 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6332 -8.6545 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.4800 -3.8046 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 11.4139 -9.2816 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6332 -7.4211 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 15.7411 -9.2607 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 16.7654 -8.6754 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 16.7654 -7.4838 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 17.8734 -2.9893 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 18.2496 -1.8396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 18.8350 -3.7001 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 19.4412 -1.8396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 19.8175 -2.9893 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 19.8593 -4.2854 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 18.8350 -5.0798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.8316 -5.6860 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 19.8802 -5.6860 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 19.8802 -6.8776 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 20.9045 -5.0798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 18.8350 -7.4838 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.8316 -6.8776 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 18.8350 -8.6754 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 19.8802 -9.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.8316 -9.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.8316 -10.4523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 18.8350 -11.0585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 16.7654 -11.0585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3584 -9.2816 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4454 -8.6545 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2923 -8.6545 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4454 -3.8046 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.5116 -9.2816 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2923 -7.4211 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1634 -9.2607 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1391 -8.6754 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1391 -7.4838 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0312 -2.9893 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6549 -1.8396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0695 -3.7001 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.4633 -1.8396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1079 -2.9893 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0661 -4.2854 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0695 -5.0798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0939 -5.6860 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0243 -5.6860 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0243 -6.8776 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -5.0798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0695 -7.4838 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0939 -6.8776 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0695 -8.6754 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0243 -9.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0939 -9.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0939 -10.4523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0695 -11.0585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1391 -11.0585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6750 -3.8046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5879 -3.1566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6750 -5.0589 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5879 -1.9023 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.4800 -1.2752 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6750 -1.2752 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.4800 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2505 -3.8046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3375 -3.1566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2505 -5.0589 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3375 -1.9023 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2505 -1.2752 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4454 -1.2752 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 2 0 0 0 0 + 2 5 1 0 0 0 0 + 2 6 2 0 0 0 0 + 3 7 1 0 0 0 0 + 3 8 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 10 1 0 0 0 0 + 6 11 1 0 0 0 0 + 6 12 1 0 0 0 0 + 7 13 1 0 0 0 0 + 7 14 2 0 0 0 0 + 8 15 1 0 0 0 0 + 8 11 1 0 0 0 0 + 9 16 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 17 2 0 0 0 0 + 11 18 2 0 0 0 0 + 25 13 1 6 0 0 0 + 16 19 1 0 0 0 0 + 16 20 1 0 0 0 0 + 17 21 1 0 0 0 0 + 17 22 1 0 0 0 0 + 19 23 1 0 0 0 0 + 19 24 2 0 0 0 0 + 20 21 2 0 0 0 0 + 53 23 1 1 0 0 0 + 25 26 1 0 0 0 0 + 25 27 1 0 0 0 0 + 26 28 1 0 0 0 0 + 26 29 2 0 0 0 0 + 27 30 1 1 0 0 0 + 27 31 1 0 0 0 0 + 82 28 1 6 0 0 0 + 31 32 1 0 0 0 0 + 32 33 2 0 0 0 0 + 32 49 1 0 0 0 0 + 34 35 1 0 0 0 0 + 34 36 1 0 0 0 0 + 34 81 1 0 0 0 0 + 35 37 1 0 0 0 0 + 36 38 1 0 0 0 0 + 36 39 1 6 0 0 0 + 36 40 1 0 0 0 0 + 37 38 1 0 0 0 0 + 40 41 2 0 0 0 0 + 40 42 1 0 0 0 0 + 42 43 1 0 0 0 0 + 42 44 1 0 0 0 0 + 43 45 1 0 0 0 0 + 45 46 2 0 0 0 0 + 45 47 1 0 0 0 0 + 47 48 1 0 0 0 0 + 47 49 1 0 0 0 0 + 49 50 1 1 0 0 0 + 50 51 1 0 0 0 0 + 50 52 1 0 0 0 0 + 53 54 1 0 0 0 0 + 53 55 1 0 0 0 0 + 54 56 1 0 0 0 0 + 54 57 2 0 0 0 0 + 55 58 1 6 0 0 0 + 55 59 1 0 0 0 0 + 89 56 1 1 0 0 0 + 59 60 1 0 0 0 0 + 60 61 2 0 0 0 0 + 60 77 1 0 0 0 0 + 62 63 1 0 0 0 0 + 62 64 1 0 0 0 0 + 62 88 1 0 0 0 0 + 63 65 1 0 0 0 0 + 64 66 1 0 0 0 0 + 64 67 1 1 0 0 0 + 64 68 1 0 0 0 0 + 65 66 1 0 0 0 0 + 68 69 2 0 0 0 0 + 68 70 1 0 0 0 0 + 70 71 1 0 0 0 0 + 70 72 1 0 0 0 0 + 71 73 1 0 0 0 0 + 73 74 2 0 0 0 0 + 73 75 1 0 0 0 0 + 75 76 1 0 0 0 0 + 75 77 1 0 0 0 0 + 77 78 1 6 0 0 0 + 78 79 1 0 0 0 0 + 78 80 1 0 0 0 0 + 81 82 1 0 0 0 0 + 81 83 2 0 0 0 0 + 82 84 1 0 0 0 0 + 84 85 1 0 0 0 0 + 84 86 1 6 0 0 0 + 85 87 1 0 0 0 0 + 88 89 1 0 0 0 0 + 88 90 2 0 0 0 0 + 89 91 1 0 0 0 0 + 91 92 1 0 0 0 0 + 91 93 1 0 0 0 0 +M END +> +20030 + +> +30 + +> +20030 + +> +31_CPDBAS_v5c + +> +C63H88N12O16 + +> +1269.4436 + +> +defined organic + +> +parent + +> +representative component in mixture + +> +Actinomycin C + +> +8052-16-2 + +> +mixture or formulation + +> +mixture of actinomycin C1 [50-76-0] (10%), actinomycin C2 [2612-14-8] (45%), and actinomycin C3 [6156-47-4] (45%), structure shown C2, stereochem + +> +2-amino-4,6-dimethyl-3-oxo-N~9~-[(6S,9R,10S,13R,18aS)-2,5,9-trimethyl-6,13-bis(1-methylethyl)-1,4,7,11,14-pentaoxohexadecahydro-1H-pyrrolo[2,1-i][1,4,7,10,13]oxatetraazacyclohexadecin-10-yl]-N~1~-{(6S,9R,10S,13R,18aS)-2,5,9-trimethyl-6-(1-methylethyl) + +> +O=C(N[C@@H]([C@H](OC([C@@H]5[C@@H](C)C)=O)C)C(N[C@H]([C@@H](C)CC)C(N4CCC[C@@](C(N(C)CC(N5C)=O)=O)4[H])=O)=O)C(C(C(OC2=C(C)C=C3)=C(C)C1=O)=NC2=C3C(N[C@@H]([C@H](OC([C@@H]7[C@H](C)C)=O)C)C(N[C@H](C(C)C)C(N6CCC[C@@](C(N(C)CC(N7C)=O)=O)6[H])=O)=O)=O)=C1N + +> +O=C(N[C@@H]([C@H](OC([C@@H]5[C@@H](C)C)=O)C)C(N[C@H]([C@@H](C)CC)C(N4CCC[C@@](C(N(C)CC(N5C)=O)=O)4[H])=O)=O)C(C(C(OC2=C(C)C=C3)=C(C)C1=O)=NC2=C3C(N[C@@H]([C@H](OC([C@@H]7[C@H](C)C)=O)C)C(N[C@H](C(C)C)C(N6CCC[C@@](C(N(C)CC(N7C)=O)=O)6[H])=O)=O)=O)=C1N + +> +InChI=1/C63H88N12O16/c1-17-31(8)44-61(86)75-25-19-21-38(75)59(84)71(14)27-40(77)73(16)50(30(6)7)63(88)90-35(12)46(57(82)67-44)69-55(80)41-42(64)51(78)33(10)53-48(41)65-47-36(23-22-32(9)52(47)91-53)54(79)68-45-34(11)89-62(87)49(29(4)5)72(15)39(76)26-70(13)58(83)37-20-18-24-74(37)60(85)43(28(2)3)66-56(45)81/h22-23,28-31,34-35,37-38,43-46,49-50H,17-21,24-27,64H2,1-16H3,(H,66,81)(H,67,82)(H,68,79)(H,69,80)/t31-,34+,35+,37-,38-,43+,44+,45-,46-,49-,50-/m0/s1/f/h66-69H + +> +QCXJFISCRQIYID-IFORFJDKDU + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/ACTINOMYCIN%20C.html + +$$$$ + + + + 92 98 0 0 1 0 0 0 0 0 1 V2000 + 11.5534 -11.4484 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5534 -12.6457 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5827 -10.8602 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.5031 -10.8602 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.5031 -13.2549 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5827 -13.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5827 -9.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.6330 -11.4484 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.4738 -11.4484 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.4738 -12.6457 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.6330 -12.6457 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5827 -14.4523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.6330 -9.0537 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5534 -9.0537 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6623 -10.8602 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4235 -10.8602 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4235 -13.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6623 -13.2549 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4235 -9.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3942 -11.4484 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3942 -12.6457 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4235 -14.4523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3942 -9.0537 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.4738 -9.0537 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 13.6330 -7.7933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5407 -7.1631 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.7043 -7.1631 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5407 -2.2897 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 11.4694 -7.7933 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 14.7043 -5.9238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 15.8177 -7.7723 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 16.8470 -7.1841 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 16.8470 -5.9868 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5280 -1.8065 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.5280 -0.6092 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 15.6706 -2.3947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.9603 -1.4704 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 15.6706 -3.5921 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 18.3384 -0.3151 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 18.9266 -2.1846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 19.5358 -0.3151 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 19.9139 -1.4704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.4777 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.5573 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 19.9559 -2.7728 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 18.9266 -3.5711 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.9183 -4.1802 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 19.9769 -4.1802 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 19.9769 -5.3776 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 21.0062 -3.5711 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 18.9266 -5.9868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.9183 -5.3776 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 18.9266 -7.1841 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 19.9769 -7.7723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.9183 -7.7723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 17.9183 -8.9697 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 18.9266 -9.5788 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 16.8470 -9.5788 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3942 -7.7933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4865 -7.1631 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3229 -7.1631 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4865 -2.2897 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.5578 -7.7933 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3229 -5.9238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1885 -7.7723 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1592 -7.1841 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1592 -5.9868 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4992 -1.8065 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4992 -0.6092 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3566 -2.3947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0459 -1.4704 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3566 -3.5921 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6678 -0.3151 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0796 -2.1846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.4704 -0.3151 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1133 -1.4704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5285 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4489 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0713 -2.7728 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0796 -3.5711 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1089 -4.1802 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0293 -4.1802 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0293 -5.3776 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.5711 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0796 -5.9868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1089 -5.3776 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0796 -7.1841 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0293 -7.7723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1089 -7.7723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1089 -8.9697 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0796 -9.5788 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1592 -9.5788 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 2 0 0 0 0 + 2 5 1 0 0 0 0 + 2 6 2 0 0 0 0 + 3 7 1 0 0 0 0 + 3 8 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 10 1 0 0 0 0 + 6 11 1 0 0 0 0 + 6 12 1 0 0 0 0 + 7 13 1 0 0 0 0 + 7 14 2 0 0 0 0 + 8 15 1 0 0 0 0 + 8 11 1 0 0 0 0 + 9 16 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 17 2 0 0 0 0 + 11 18 2 0 0 0 0 + 25 13 1 6 0 0 0 + 16 19 1 0 0 0 0 + 16 20 1 0 0 0 0 + 17 21 1 0 0 0 0 + 17 22 1 0 0 0 0 + 19 23 1 0 0 0 0 + 19 24 2 0 0 0 0 + 20 21 2 0 0 0 0 + 59 23 1 1 0 0 0 + 25 26 1 0 0 0 0 + 25 27 1 0 0 0 0 + 26 28 1 0 0 0 0 + 26 29 2 0 0 0 0 + 27 30 1 1 0 0 0 + 27 31 1 0 0 0 0 + 28 34 1 0 0 0 0 + 31 32 1 0 0 0 0 + 32 33 2 0 0 0 0 + 32 55 1 0 0 0 0 + 34 35 1 6 0 0 0 + 34 36 1 0 0 0 0 + 35 43 1 0 0 0 0 + 35 44 1 0 0 0 0 + 36 37 1 0 0 0 0 + 36 38 2 0 0 0 0 + 37 39 1 0 0 0 0 + 37 40 1 0 0 0 0 + 39 41 1 0 0 0 0 + 40 42 1 0 0 0 0 + 40 45 1 6 0 0 0 + 40 46 1 0 0 0 0 + 41 42 1 0 0 0 0 + 46 47 2 0 0 0 0 + 46 48 1 0 0 0 0 + 48 49 1 0 0 0 0 + 48 50 1 0 0 0 0 + 49 51 1 0 0 0 0 + 51 52 2 0 0 0 0 + 51 53 1 0 0 0 0 + 53 54 1 0 0 0 0 + 53 55 1 0 0 0 0 + 55 56 1 1 0 0 0 + 56 57 1 0 0 0 0 + 56 58 1 0 0 0 0 + 59 60 1 0 0 0 0 + 59 61 1 0 0 0 0 + 60 62 1 0 0 0 0 + 60 63 2 0 0 0 0 + 61 64 1 6 0 0 0 + 61 65 1 0 0 0 0 + 62 68 1 0 0 0 0 + 65 66 1 0 0 0 0 + 66 67 2 0 0 0 0 + 66 89 1 0 0 0 0 + 68 69 1 1 0 0 0 + 68 70 1 0 0 0 0 + 69 77 1 0 0 0 0 + 69 78 1 0 0 0 0 + 70 71 1 0 0 0 0 + 70 72 2 0 0 0 0 + 71 73 1 0 0 0 0 + 71 74 1 0 0 0 0 + 73 75 1 0 0 0 0 + 74 76 1 0 0 0 0 + 74 79 1 1 0 0 0 + 74 80 1 0 0 0 0 + 75 76 1 0 0 0 0 + 80 81 2 0 0 0 0 + 80 82 1 0 0 0 0 + 82 83 1 0 0 0 0 + 82 84 1 0 0 0 0 + 83 85 1 0 0 0 0 + 85 86 2 0 0 0 0 + 85 87 1 0 0 0 0 + 87 88 1 0 0 0 0 + 87 89 1 0 0 0 0 + 89 90 1 6 0 0 0 + 90 91 1 0 0 0 0 + 90 92 1 0 0 0 0 +M END +> +20031 + +> +31 + +> +20031 + +> +32_CPDBAS_v5c + +> +C62H86N12O16 + +> +1255.417 + +> +defined organic + +> +parent + +> +tested chemical + +> +Actinomycin D + +> +50-76-0 + +> +single chemical compound + +> +stereochem + +> +2-amino-4,6-dimethyl-3-oxo-N,N'-bis[(6S,9R,10S,13R,18aS)-2,5,9-trimethyl-6,13-bis(1-methylethyl)-1,4,7,11,14-pentaoxohexadecahydro-1H-pyrrolo[2,1-i][1,4,7,10,13]oxatetraazacyclohexadecin-10-yl]-3H-phenoxazine-1,9-dicarboxamide + +> +C12C(OC3=C(N=1)C(=CC=C3C)C(N[C@@H]4C(N[C@@H](C(N5[C@@H](CCC5)C(N(CC(N([C@H](C(O[C@H]4C)=O)C(C)C)C)=O)C)=O)=O)C(C)C)=O)=O)=C(C(C(=C2C(N[C@@H]6C(N[C@@H](C(N7[C@@H](CCC7)C(N(CC(N([C@H](C(O[C@H]6C)=O)C(C)C)C)=O)C)=O)=O)C(C)C)=O)=O)N)=O)C + +> +C12C(OC3=C(N=1)C(=CC=C3C)C(N[C@@H]4C(N[C@@H](C(N5[C@@H](CCC5)C(N(CC(N([C@H](C(O[C@H]4C)=O)C(C)C)C)=O)C)=O)=O)C(C)C)=O)=O)=C(C(C(=C2C(N[C@@H]6C(N[C@@H](C(N7[C@@H](CCC7)C(N(CC(N([C@H](C(O[C@H]6C)=O)C(C)C)C)=O)C)=O)=O)C(C)C)=O)=O)N)=O)C + +> +InChI=1/C62H86N12O16/c1-27(2)42-59(84)73-23-17-19-36(73)57(82)69(13)25-38(75)71(15)48(29(5)6)61(86)88-33(11)44(55(80)65-42)67-53(78)35-22-21-31(9)51-46(35)64-47-40(41(63)50(77)32(10)52(47)90-51)54(79)68-45-34(12)89-62(87)49(30(7)8)72(16)39(76)26-70(14)58(83)37-20-18-24-74(37)60(85)43(28(3)4)66-56(45)81/h21-22,27-30,33-34,36-37,42-45,48-49H,17-20,23-26,63H2,1-16H3,(H,65,80)(H,66,81)(H,67,78)(H,68,79)/t33-,34-,36+,37+,42-,43-,44+,45+,48+,49+/m1/s1/f/h65-68H + +> +RJURFGZVJUQBHK-HQANWYOLDQ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +inactive + +> +0.00111 + +> +8.84168367960606E-07 + +> +88 + +> +positive test results only by intraperitoneal or intravenous injection; TD50 is harmonic mean of more than one positive test + +> +peritoneal cavity + +> +peritoneal cavity + +> +active + +> +active + +> +active + +> +multisex active + +> +TD50_Rat_Note modified v5a + +> +http://potency.berkeley.edu/chempages/ACTINOMYCIN%20D.html + +$$$$ + + + + 10 9 0 0 0 0 0 0 0 0 1 V2000 + 8.0713 -1.9936 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9171 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9171 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7629 -1.9936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6087 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4626 -1.9936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3084 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1542 -1.9936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1542 -3.3254 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3318 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 10 1 0 0 0 0 +M END +> +20032 + +> +32 + +> +20032 + +> +33_CPDBAS_v5c + +> +C6H12N2O2 + +> +144.1717 + +> +defined organic + +> +parent + +> +tested chemical + +> +Adipamide + +> +628-94-4 + +> +single chemical compound + +> +hexanediamide + +> +NC(=O)CCCCC(=O)N + +> +NC(=O)CCCCC(=O)N + +> +InChI=1/C6H12N2O2/c7-5(9)3-1-2-4-6(8)10/h1-4H2,(H2,7,9)(H2,8,10)/f/h7-8H2 + +> +GVNWZKBFMFUVNX-UNXFWZPKCL + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +http://potency.berkeley.edu/chempages/ADIPAMIDE.html + +$$$$ + + + + 18 19 0 0 0 0 0 0 0 0 2 V2000 + 3.2537 -3.5906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2537 -2.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4062 -1.5958 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4062 -4.2555 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1011 -4.2555 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9682 -0.2748 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6649 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1011 -1.5958 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8866 -2.1366 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7006 -3.5817 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0038 -3.8654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5587 -2.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6687 -2.7129 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7733 -1.7199 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5446 -5.0800 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 6.7644 -6.1527 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 8.8656 -5.2130 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 1 4 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 8 1 0 0 0 0 + 3 13 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 + 7 9 2 0 0 0 0 + 8 10 2 0 0 0 0 + 9 10 1 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 12 14 2 0 0 0 0 + 12 16 1 0 0 0 0 + 13 15 2 0 0 0 0 + 14 15 1 0 0 0 0 + 16 17 1 0 0 0 0 + 16 18 2 0 0 0 0 +M CHG 2 16 1 17 -1 +M END +> +20033 + +> +33 + +> +20033 + +> +34_CPDBAS_v5c + +> +C11H8N2O5 + +> +248.1916 + +> +defined organic + +> +parent + +> +tested chemical + +> +AF-2 + +> +3688-53-7 + +> +single chemical compound + +> +stereochem + +> +(2Z)-2-(furan-2-yl)-3-(5-nitrofuran-2-yl)prop-2-enamide + +> +O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1 + +> +O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1 + +> +InChI=1/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14)/b8-6-/f/h12H2 + +> +LYAHJFZLDZDIOH-SDXKRDFODJ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse; hamster + +> +active + +> +29.4 + +> +0.118456869612026 + +> +35 + +> +TD50 is harmonic mean of more than one positive test; greater than ten-fold variation among TD50 values for positive results + +> +mammary gland + +> +mammary gland + +> +active + +> +131 + +> +0.527818024461747 + +> +31 + +> +TD50 is harmonic mean of more than one positive test; greater than ten-fold variation among TD50 values for positive results + +> +stomach + +> +stomach + +> +active + +> +164 + +> +0.660779816883408 + +> +30 + +> +TD50 is harmonic mean of more than one positive test + +> +esophagus; stomach + +> +stomach + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +structure modified v5b + +> +http://potency.berkeley.edu/chempages/AF-2.html + +$$$$ + + + + 25 29 0 0 1 0 0 0 0 0 1 V2000 + 5.7454 -4.6535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5929 -3.9863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5929 -2.6604 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4403 -1.9931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2878 -2.6604 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2878 -3.9863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4403 -4.6535 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1352 -4.6535 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2999 -1.7678 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.0451 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.8458 -0.5546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1630 -0.6933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7454 -1.9931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.8980 -2.6604 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.8980 -3.9863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8859 -4.8788 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3399 -6.0921 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.0227 -5.9534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4768 -7.1666 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4647 -8.0592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6172 -7.3919 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6969 -5.8148 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6658 -6.2307 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7454 -0.6673 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.8980 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 15 2 0 0 0 0 + 1 18 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 13 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 12 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 9 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 2 0 0 0 0 + 9 10 1 6 0 0 0 + 9 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 13 14 2 0 0 0 0 + 13 24 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 1 0 0 0 0 + 17 21 1 0 0 0 0 + 17 23 1 1 0 0 0 + 18 19 1 0 0 0 0 + 18 22 1 6 0 0 0 + 19 20 2 0 0 0 0 + 20 21 1 0 0 0 0 + 24 25 1 0 0 0 0 +M END +> +20034 + +> +34 + +> +20034 + +> +35_CPDBAS_v5c + +> +C17H14O6 + +> +314.294 + +> +defined organic + +> +parent + +> +tested chemical + +> +Aflatoxicol + +> +29611-03-8 + +> +single chemical compound + +> +stereochem + +> +(1R,6aS,9aS)-1-hydroxy-4-(methyloxy)-2,3,6a,9a-tetrahydrocyclopenta[c]furo[3',2':4,5]furo[2,3-h]chromen-11(1H)-one + +> +O=C(O2)C([C@@H](CC3)O)=C3C1=C2C4=C(O[C@@]5([H])[C@]([H])4C=CO5)C=C1OC + +> +O=C(O2)C([C@@H](CC3)O)=C3C1=C2C4=C(O[C@@]5([H])[C@]([H])4C=CO5)C=C1OC + +> +InChI=1/C17H14O6/c1-20-10-6-11-14(8-4-5-21-17(8)22-11)15-13(10)7-2-3-9(18)12(7)16(19)23-15/h4-6,8-9,17-18H,2-3H2,1H3/t8-,9+,17-/m0/s1 + +> +WYIWLDSPNDMZIT-BTKFHORUBM + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +active + +> +0.00247 + +> +7.85888372033828E-06 + +> +78 + +> +liver + +> +active + +> +active + +> +http://potency.berkeley.edu/chempages/AFLATOXICOL.html + +$$$$ + + + + 23 27 0 0 0 0 0 0 0 0 1 V2000 + 5.4986 -3.3221 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3531 -3.9918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1987 -3.3221 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0444 -3.9918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0444 -5.3224 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1987 -5.9833 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3531 -5.3224 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1987 -7.3139 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.7843 -5.7277 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.3701 -6.9966 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.6527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.7843 -3.5776 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1987 -1.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3531 -1.3306 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4986 -1.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7675 -1.5861 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5430 -2.6612 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7675 -3.7362 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5430 -4.8113 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8119 -4.3971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8119 -3.0665 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0444 -1.3306 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0444 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 15 1 0 0 0 0 + 1 18 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 13 2 0 0 0 0 + 4 5 2 0 0 0 0 + 4 12 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 9 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 2 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 13 14 1 0 0 0 0 + 13 22 1 0 0 0 0 + 14 15 2 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 1 0 0 0 0 + 17 21 1 0 0 0 0 + 18 19 1 0 0 0 0 + 19 20 2 0 0 0 0 + 20 21 1 0 0 0 0 + 22 23 1 0 0 0 0 +M END +> +20035 + +> +35 + +> +20035 + +> +36_CPDBAS_v5c + +> +C17H12O6 + +> +312.2736 + +> +defined organic + +> +parent + +> +tested chemical + +> +Aflatoxin B1 + +> +1162-65-8 + +> +single chemical compound + +> +4-(methyloxy)-2,3,6a,9a-tetrahydrocyclopenta[c]furo[3',2':4,5]furo[2,3-h]chromene-1,11-dione + +> +C12=C3C(C4=C(C(O3)=O)C(=O)CC4)=C(C=C1OC5C2C=CO5)OC + +> +C12=C3C(C4=C(C(O3)=O)C(=O)CC4)=C(C=C1OC5C2C=CO5)OC + +> +InChI=1/C17H12O6/c1-20-10-6-11-14(8-4-5-21-17(8)22-11)15-13(10)7-2-3-9(18)12(7)16(19)23-15/h4-6,8,17H,2-3H2,1H3 + +> +OQIQSTLJSLGHID-UHFFFAOYAB + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse; rhesus; cynomolgus; tree shrew + +> +active + +> +0.0032 + +> +1.02474240537785E-05 + +> +77 + +> +TD50 is harmonic mean of more than one positive test; harmonic mean of TD50 includes a value for upper 99% confidence limit from study with 100% tumor incidence but no lifetable; greater than ten-fold variation among TD50 values for positive results + +> +kidney; large intestine; liver + +> +large intestine; liver + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0.0082 + +> +gall bladder; liver; vascular system + +> +0.0201 + +> +gall bladder; liver; vascular system + +> +Tree Shrew (TD50=0.0269; Target Sites=liver) + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TD50_Rat_Note modified v5a + +> +http://potency.berkeley.edu/chempages/AFLATOXIN%20B1.html + +$$$$ + + + + 24 28 0 0 0 0 0 0 0 0 1 V2000 + 6.7674 -1.9958 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7674 -3.3293 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6244 -1.3335 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4723 -3.3202 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6244 -3.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4723 -2.0048 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3202 -3.9824 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3202 -5.3251 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0593 -5.7333 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2791 -4.6537 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6244 -5.3251 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9195 -1.3335 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0593 -3.5742 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4814 -5.9873 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0181 -4.2546 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6244 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.0716 -2.0048 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.9392 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2610 -2.5038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9195 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9195 -3.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7947 -6.0054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.0716 -3.3202 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9558 -5.3432 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 3 1 0 0 0 0 + 1 12 1 0 0 0 0 + 2 5 1 0 0 0 0 + 2 21 1 0 0 0 0 + 3 6 1 0 0 0 0 + 3 16 2 0 0 0 0 + 4 6 1 0 0 0 0 + 4 7 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 11 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 13 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 14 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 13 1 0 0 0 0 + 10 15 1 0 0 0 0 + 11 14 2 0 0 0 0 + 11 22 1 0 0 0 0 + 12 17 1 0 0 0 0 + 12 20 2 0 0 0 0 + 13 19 1 0 0 0 0 + 15 18 1 0 0 0 0 + 17 23 1 0 0 0 0 + 18 19 2 0 0 0 0 + 21 23 1 0 0 0 0 + 22 24 1 0 0 0 0 +M END +> +20036 + +> +36 + +> +20036 + +> +37_CPDBAS_v5c + +> +C17H12O7 + +> +328.273 + +> +defined organic + +> +parent + +> +representative component in mixture + +> +Aflatoxin, crude + +> +1402-68-2 + +> +mixture or formulation + +> +mixture of aflatoxins, structure shown G1 [1165-39-5] + +> +5-(methyloxy)-3,4,7a,10a-tetrahydro-1H,12H-furo[3',2':4,5]furo[2,3-h]pyrano[3,4-c]chromene-1,12-dione + +> +O=C1C(C(OCC5)=O)=C5C(C(OC)=C4)=C(C2=C4OC3C2C=CO3)O1 + +> +O=C1C(C(OCC5)=O)=C5C(C(OC)=C4)=C(C2=C4OC3C2C=CO3)O1 + +> +InChI=1/C17H12O7/c1-20-9-6-10-12(8-3-5-22-17(8)23-10)14-11(9)7-2-4-21-15(18)13(7)16(19)24-14/h3,5-6,8,17H,2,4H2,1H3 + +> +XWIYFDMXXLINPU-UHFFFAOYAD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +0.00299 + +> +50 + +> +TD50 is harmonic mean of more than one positive test; TD50_Rat_mmol was not calculated for this mixture, but Activiity Score is assigned value of "50" to indicate active + +> +liver + +> +active + +> +0.343 + +> +50 + +> +hematopoietic system + +> +active + +> +active + +> +active + +> +multisite active; multispecies active + +> +TD50_Rat_mmol and TD50_Mouse_mmol conversions from mg values not provided due substance being a mixture + +> +http://potency.berkeley.edu/chempages/AFLATOXIN,%20CRUDE.html + +$$$$ + + + + 0 0 0 0 0 0 0 0 0 0 1 V2000 +M END +> +20037 + +> +20037 + +> +38_CPDBAS_v5c + +> +no structure + +> +no structure + +> +Agar + +> +9002-18-0 + +> +mixture or formulation + +> +InChI=1// + +> +MOSFIJXAXDLOML-UHFFFAOYAM + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 230 + +> +http://potency.berkeley.edu/chempages/AGAR.html + +$$$$ + + + + 15 15 0 0 0 0 0 0 0 0 1 V2000 + 5.7597 -2.0304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1706 -2.0304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7597 -0.7148 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6306 -2.7038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4807 -2.0304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.7038 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3101 -2.7038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6306 -0.0414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2094 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3592 -0.6526 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9096 -2.7245 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4807 -0.7148 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1706 -0.7148 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9096 -0.0104 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0802 -0.6837 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 2 0 0 0 0 + 1 11 1 0 0 0 0 + 2 7 1 0 0 0 0 + 2 6 2 0 0 0 0 + 2 13 1 0 0 0 0 + 3 8 2 0 0 0 0 + 3 14 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 7 1 0 0 0 0 + 5 12 2 0 0 0 0 + 8 12 1 0 0 0 0 + 9 15 1 0 0 0 0 + 9 10 2 0 0 0 0 + 14 15 1 0 0 0 0 +M END +> +20038 + +> +38 + +> +20038 + +> +39_CPDBAS_v5c + +> +C11H11ClO3 + +> +226.6562 + +> +defined organic + +> +parent + +> +tested chemical + +> +Alclofenac + +> +22131-79-9 + +> +single chemical compound + +> +[3-chloro-4-(prop-2-en-1-yloxy)phenyl]acetic acid + +> +C1(OCC=C)=CC=C(CC(=O)O)C=C1Cl + +> +C1(OCC=C)=CC=C(CC(=O)O)C=C1Cl + +> +InChI=1/C11H11ClO3/c1-2-5-15-10-4-3-8(6-9(10)12)7-11(13)14/h2-4,6H,1,5,7H2,(H,13,14)/f/h13H + +> +ARHWPKZXBHOEEE-NDKGDYFDCL + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +Rat added v2a + +> +http://potency.berkeley.edu/chempages/ALCLOFENAC.html + +$$$$ + + + + 12 11 0 0 0 0 0 0 0 0 1 V2000 + 0.8456 -0.6672 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9938 -1.3343 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1497 -1.9938 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2978 -1.3343 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4537 -1.9938 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6019 -1.3343 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6019 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.7578 -1.9938 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.7578 -3.3281 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3343 -2.4825 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.4825 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6609 -0.1784 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 10 1 0 0 0 0 + 2 12 1 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 10 11 1 0 0 0 0 +M END +> +20039 + +> +39 + +> +39223 + +> +40_CPDBAS_v5c + +> +C7H14N2O2S + +> +190.2633 + +> +defined organic + +> +parent + +> +tested chemical + +> +Aldicarb + +> +116-06-3 + +> +single chemical compound + +> +(1E)-2-methyl-2-(methylthio)propanal O-[(methylamino)carbonyl]oxime + +> +CC(C=NOC(=O)NC)(SC)C + +> +CC(C=NOC(=O)NC)(SC)C + +> +InChI=1/C7H14N2O2S/c1-7(2,12-4)5-9-11-6(10)8-3/h5H,1-4H3,(H,8,10)/b9-5+/f/h8H + +> +QGLZXHRNAYXIBU-RVKZGWQMDN + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 136 + +> +http://potency.berkeley.edu/chempages/ALDICARB.html + +$$$$ + + + + 18 21 0 0 0 0 0 0 0 0 1 V2000 + 4.3850 -2.1587 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2104 -2.1095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1821 -0.9164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1845 -3.0750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3567 -1.7958 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.5400 -3.2473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9188 -2.6568 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8869 -3.2473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3887 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 5.0615 -0.3260 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6126 -4.2128 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1501 -2.7798 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3653 -3.6962 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.6052 -4.8340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.7073 -2.0726 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2657 -4.4404 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5449 -5.2337 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.0750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 1 0 0 0 0 + 1 5 1 0 0 0 0 + 2 6 1 0 0 0 0 + 2 7 1 0 0 0 0 + 3 8 1 0 0 0 0 + 3 9 1 0 0 0 0 + 3 10 1 0 0 0 0 + 4 11 2 0 0 0 0 + 4 12 1 0 0 0 0 + 6 13 1 0 0 0 0 + 6 8 1 0 0 0 0 + 7 14 1 0 0 0 0 + 7 15 1 0 0 0 0 + 8 16 1 0 0 0 0 + 8 11 1 0 0 0 0 + 11 17 1 0 0 0 0 + 13 18 1 0 0 0 0 + 13 14 1 0 0 0 0 + 15 18 2 0 0 0 0 +M END +> +20040 + +> +40 + +> +20040 + +> +41_CPDBAS_v5c + +> +C12H8Cl6 + +> +364.9099 + +> +defined organic + +> +parent + +> +tested chemical + +> +Aldrin + +> +309-00-2 + +> +single chemical compound + +> +stereochem + +> +1,2,3,4,10,10-hexachloro-1,4,4a,5,8,8a-hexahydro-1,4:5,8-dimethanonaphthalene + +> +ClC(C(Cl)(Cl)C43Cl)(C(Cl)=C4Cl)C1C3C2C=CC1C2 + +> +ClC(C(Cl)(Cl)C43Cl)(C(Cl)=C4Cl)C1C3C2C=CC1C2 + +> +InChI=1/C12H8Cl6/c13-8-9(14)11(16)7-5-2-1-4(3-5)6(7)10(8,15)12(11,17)18/h1-2,4-7H,3H2 + +> +QBYJBZPUGVGKQQ-UHFFFAOYAT + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +1.27 + +> +3.48031116722237E-03 + +> +56 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +active + +> +TR 21; final call in CPDB differs due to additional data + +> +http://potency.berkeley.edu/chempages/ALDRIN.html + +$$$$ + + + + 23 22 0 0 0 0 0 0 0 0 2 V2000 + 13.2448 -7.3111 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0 + 12.6753 -2.6490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6753 -3.9867 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5230 -1.9867 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5230 -4.6489 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3707 -2.6490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3707 -3.9867 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5230 -5.9867 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 12.8475 -5.9867 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.1853 -5.9867 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5230 -7.3111 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 6.9138 -0.6622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7615 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1523 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3046 -0.6622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4569 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6092 -0.6622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0661 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2184 -0.6622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3707 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5230 -0.6622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6753 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 2 0 0 0 0 + 3 5 2 0 0 0 0 + 4 6 1 0 0 0 0 + 4 22 1 0 0 0 0 + 5 7 1 0 0 0 0 + 5 8 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 2 0 0 0 0 + 8 10 2 0 0 0 0 + 8 11 1 0 0 0 0 + 12 13 1 0 0 0 0 + 12 19 1 0 0 0 0 + 13 18 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 1 0 0 0 0 + 19 20 1 0 0 0 0 + 20 21 1 0 0 0 0 + 21 22 1 0 0 0 0 + 22 23 1 0 0 0 0 +M CHG 2 1 1 11 -1 +M END +> +20041 + +> +41 + +> +20041 + +> +42_CPDBAS_v5c + +> +C18H29NaO3S + +> +348.4758 + +> +defined organic + +> +salt Na + +> +representative isomer in mixture + +> +Alkylbenzenesulfonate, linear + +> +42615-29-2 + +> +mixture or formulation + +> +mixture of C10-13 alkylbenzenesulfonates average 11.6; with phenyl attachment varying in apprpx equal amounts between C-2,3,4,5 or 6; structure shown C12 attached at C2 + +> +sodium 4-(dodecan-2-yl)benzenesulfonate + +> +O=S(C1=CC=C(C(C)CCCCCCCCCC)C=C1)([O-])=O.[Na+] + +> +O=S(C1=CC=C(C(C)CCCCCCCCCC)C=C1)(O)=O + +> +InChI=1/C18H30O3S.Na/c1-3-4-5-6-7-8-9-10-11-16(2)17-12-14-18(15-13-17)22(19,20)21;/h12-16H,3-11H2,1-2H3,(H,19,20,21);/q;+1/p-1/fC18H29O3S.Na/q-1;m + +> +GHRHULTYHYEOQB-MFZBKVKLCJ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +structure modified v5b + +> +http://potency.berkeley.edu/chempages/ALKYLBENZENESULFONATE,%20LINEAR.html + +$$$$ + + + + 14 13 0 0 0 0 0 0 0 0 2 V2000 + 0.0000 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1547 -0.4949 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3093 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4640 -0.4949 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6186 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7733 -0.4949 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9152 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0699 -0.4949 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2245 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3792 -0.4949 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5338 -1.1547 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 12.2063 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.8740 -2.3093 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6885 -1.8271 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 11 14 1 0 0 0 0 +M CHG 2 11 1 14 -1 +M END +> +20042 + +> +42 + +> +20042 + +> +43_CPDBAS_v5c + +> +C12H27NO + +> +201.3489 + +> +defined organic + +> +parent + +> +representative isomer in mixture + +> +Alkyldimethylamine oxides, commercial grade + +> +NOCAS + +> +mixture or formulation + +> +mixture, C10-16 [70592-80-2], C12-18 [68955-55-5], C12-16 [68439-70-3], C14-18 [68390-99-8], structure shown C-12 + +> +decyl(dimethyl)amine oxide + +> +[O-][N+](C)(C)CCCCCCCCCC + +> +[O-][N+](C)(C)CCCCCCCCCC + +> +InChI=1/C12H27NO/c1-4-5-6-7-8-9-10-11-12-13(2,3)14/h4-12H2,1-3H3 + +> +ZRKZFNZPJKEWPC-UHFFFAOYAU + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/ALKYLDIMETHYLAMINE%20OXIDES,%20COMMERCIAL%20GRADE.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 4.2744 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2901 -0.8879 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4278 -2.2095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2095 -2.7532 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3216 -1.7621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9066 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9892 -0.6126 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5773 -2.8771 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7336 -2.2095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7336 -0.8810 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.8831 -2.8771 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 7 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 +M END +> +20043 + +> +43 + +> +20043 + +> +44_CPDBAS_v5c + +> +C4H6N4O3 + +> +158.1164 + +> +defined organic + +> +parent + +> +tested chemical + +> +Allantoin + +> +97-59-6 + +> +single chemical compound + +> +1-(2,5-dioxoimidazolidin-4-yl)urea + +> +O=C1C(NC(=O)N1)NC(=O)N + +> +O=C1C(NC(=O)N1)NC(=O)N + +> +InChI=1/C4H6N4O3/c5-3(10)6-1-2(9)8-4(11)7-1/h1H,(H3,5,6,10)(H2,7,8,9,11)/f/h6-8H,5H2 + +> +POJWUDADGALRAB-BANUENCFCI + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/ALLANTOIN.html + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3061 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 -0.6638 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 +M END +> +20044 + +> +44 + +> +20044 + +> +45_CPDBAS_v5c + +> +C3H6O + +> +58.0791 + +> +defined organic + +> +parent + +> +tested chemical + +> +Allyl alcohol + +> +107-18-6 + +> +single chemical compound + +> +prop-2-en-1-ol + +> +C=CCO + +> +C=CCO + +> +InChI=1/C3H6O/c1-2-3-4/h2,4H,1,3H2 + +> +XXROGKLTLUQVRX-UHFFFAOYAC + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +Mutagenicity_SAL_CPDB added v3a + +> +http://potency.berkeley.edu/chempages/ALLYL%20ALCOHOL.html + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3061 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 -0.6638 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 +M END +> +20045 + +> +45 + +> +39231 + +> +46_CPDBAS_v5c + +> +C3H5Cl + +> +76.5248 + +> +defined organic + +> +parent + +> +tested chemical + +> +Allyl chloride + +> +107-05-1 + +> +single chemical compound + +> +3-chloroprop-1-ene + +> +C=CCCl + +> +C=CCCl + +> +InChI=1/C3H5Cl/c1-2-3-4/h2H,1,3H2 + +> +OSDWBNJEKMUWAV-UHFFFAOYAQ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +0 + +> +NTP bioassay inadequate + +> +NTP bioassay inadequate + +> +NTP bioassay inadequate + +> +inconclusive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +TR 73 + +> +http://potency.berkeley.edu/chempages/ALLYL%20CHLORIDE.html + +$$$$ + + + + 8 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.8149 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1485 -1.1485 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3041 -1.8149 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4526 -1.1485 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6082 -1.8149 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7567 -1.1485 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4231 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0895 -1.1485 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 + 7 8 1 0 0 0 0 +M END +> +20046 + +> +46 + +> +39232 + +> +47_CPDBAS_v5c + +> +C6H10O2 + +> +114.1424 + +> +defined organic + +> +parent + +> +tested chemical + +> +Allyl glycidyl ether + +> +106-92-3 + +> +single chemical compound + +> +2-[(allyloxy)methyl]oxirane + +> +C=CCOCC1CO1 + +> +C=CCOCC1CO1 + +> +InChI=1/C6H10O2/c1-2-3-7-4-6-5-8-6/h2,6H,1,3-5H2 + +> +LSWYGACWGAICNM-UHFFFAOYAR + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +182 + +> +1.59449950237598 + +> +26 + +> +nasal cavity + +> +no positive results + +> +active + +> +active + +> +TR 376 + +> +http://potency.berkeley.edu/chempages/ALLYL%20GLYCIDYL%20ETHER.html + +$$$$ + + + + 6 5 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -0.6684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1525 -1.3311 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3050 -0.6684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 -1.3311 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -0.6684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7624 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 2 0 0 0 0 +M END +> +20047 + +> +47 + +> +20047 + +> +48_CPDBAS_v5c + +> +C4H5NS + +> +99.1542 + +> +defined organic + +> +parent + +> +tested chemical + +> +Allyl isothiocyanate + +> +57-06-7 + +> +single chemical compound + +> +3-isothiocyanatoprop-1-ene + +> +C=CCN=C=S + +> +C=CCN=C=S + +> +InChI=1/C4H5NS/c1-2-3-5-4-6/h2H,1,3H2 + +> +ZOJBYZNEUISWFT-UHFFFAOYAS + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +96 + +> +0.968188942072045 + +> +26 + +> +urinary bladder + +> +no positive results + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +TR 234 + +> +http://potency.berkeley.edu/chempages/ALLYL%20ISOTHIOCYANATE.html + +$$$$ + + + + 10 9 0 0 0 0 0 0 0 0 1 V2000 + 4.6087 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6087 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7629 -1.9936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9171 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0713 -1.9936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4626 -1.9936 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3084 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1542 -1.9936 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 +M END +> +20048 + +> +48 + +> +39233 + +> +49_CPDBAS_v5c + +> +C8H14O2 + +> +142.1956 + +> +defined organic + +> +parent + +> +tested chemical + +> +Allyl isovalerate + +> +2835-39-4 + +> +single chemical compound + +> +allyl 3-methylbutanoate + +> +O=C(CC(C)C)OCC=C + +> +O=C(CC(C)C)OCC=C + +> +InChI=1/C8H14O2/c1-4-5-10-8(9)6-7(2)3/h4,7H,1,5-6H2,2-3H3 + +> +HOMAGVUCNZNWBC-UHFFFAOYAF + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +123 + +> +0.865005668248525 + +> +26 + +> +hematopoietic system + +> +no positive results + +> +active + +> +62.8 + +> +0.441645170455345 + +> +32 + +> +no positive results + +> +hematopoietic system + +> +active + +> +active + +> +active + +> +multisex active; multispecies active + +> +TR 253 + +> +http://potency.berkeley.edu/chempages/ALLYL%20ISOVALERATE.html + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 4.6080 -1.9953 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4560 -2.6588 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3040 -1.9953 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3040 -0.6635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4560 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1520 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1520 -2.6588 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9953 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6080 -0.6635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 9 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 2 0 0 0 0 + 7 8 2 0 0 0 0 +M END +> +20049 + +> +49 + +> +20049 + +> +50_CPDBAS_v5c + +> +C4H7N3O2 + +> +129.1182 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Allyl-1-nitrosourea + +> +760-56-5 + +> +single chemical compound + +> +1-nitroso-1-prop-2-en-1-ylurea + +> +NC(=O)N(CC=C)N=O + +> +NC(=O)N(CC=C)N=O + +> +InChI=1/C4H7N3O2/c1-2-3-7(6-9)4(5)8/h2H,1,3H2,(H2,5,8)/f/h5H2 + +> +WBBDVRPSJSJSPC-GLFQYTTQCA + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0.341 + +> +2.64099096796579E-03 + +> +52 + +> +TD50 is harmonic mean of more than one positive test + +> +large intestine; lung; stomach + +> +mammary gland; stomach; uterus + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/1-ALLYL-1-NITROSOUREA.html + +$$$$ + + + + 7 5 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -0.6636 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1521 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3042 -0.6636 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6084 -0.6636 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.5945 -1.9954 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.9263 -1.9954 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 6 7 1 0 0 0 0 +M END +> +20050 + +> +50 + +> +20050 + +> +51_CPDBAS_v5c + +> +C3H9ClN2 + +> +108.5705 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +Allylhydrazine.HCl + +> +52207-83-7 + +> +single chemical compound + +> +parent [7422-78-8] + +> +prop-2-en-1-ylhydrazine hydrochloride + +> +C=CCNN.HCl + +> +C=CCNN + +> +InChI=1/C3H8N2.ClH/c1-2-3-5-4;/h2,5H,1,3-4H2;1H + +> +PWGPATVPEGLIAN-UHFFFAOYAO + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +34.2 + +> +0.315002694101989 + +> +34 + +> +TD50 is harmonic mean of more than one positive test + +> +lung + +> +lung; vascular system + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/ALLYLHYDRAZINE.HCl.html + +$$$$ + + + + 12 8 0 0 0 0 0 0 0 0 2 V2000 + 5.3200 -2.6600 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3200 -1.3300 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3200 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9900 -1.3300 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 6.6500 -1.3300 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.3300 -2.6600 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 -1.3300 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3300 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 2.6600 -1.3300 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 3.3250 -3.9900 0.0000 Al 0 1 0 0 0 0 0 0 0 0 0 0 + 1.9950 -3.9900 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 2 5 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 2 0 0 0 0 + 7 9 1 0 0 0 0 + 7 10 1 0 0 0 0 +M CHG 6 4 -1 5 -1 9 -1 10 -1 11 3 12 1 +M END +> +20051 + +> +51 + +> +39234 + +> +52_CPDBAS_v5c + +> +AlKO8S2 + +> +258.18674 + +> +inorganic + +> +tested chemical + +> +Aluminum potassium sulfate + +> +10043-67-1 + +> +single chemical compound + +> +aluminum potassium sulfate + +> +O=S(=O)([O-])[O-].O=S(=O)([O-])[O-].[Al+3].[K+] + +> +InChI=1/Al.K.2H2O4S/c;;2*1-5(2,3)4/h;;2*(H2,1,2,3,4)/q+3;+1;;/p-4/fAl.K.2O4S/q2m;2*-2 + +> +GRLPQNLYRHEGIJ-MHPHYJPNCZ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +http://potency.berkeley.edu/chempages/ALUMINUM%20POTASSIUM%20SULFATE.html + +$$$$ + + + + 19 21 0 0 0 0 0 0 0 0 1 V2000 + 3.4588 -5.3212 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4588 -3.9909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6036 -3.3298 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7566 -3.9909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9095 -3.3298 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9095 -1.9995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7566 -1.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6036 -1.9995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4588 -1.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4588 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3059 -1.9995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3059 -3.3298 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1529 -3.9909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.3298 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1529 -1.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7566 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0624 -3.9909 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7566 -5.3212 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 12 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 19 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 18 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 17 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +20052 + +> +52 + +> +39235 + +> +53_CPDBAS_v5c + +> +C14H7Br2NO2 + +> +381.0189 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Amino-2,4-dibromoanthraquinone + +> +81-49-2 + +> +single chemical compound + +> +1-amino-2,4-dibromo-9,10-anthraquinone + +> +O=C1C2=C(C(=CC(=C2C(=O)C3=C1C=CC=C3)Br)Br)N + +> +O=C1C2=C(C(=CC(=C2C(=O)C3=C1C=CC=C3)Br)Br)N + +> +InChI=1/C14H7Br2NO2/c15-8-5-9(16)12(17)11-10(8)13(18)6-3-1-2-4-7(6)14(11)19/h1-5H,17H2 + +> +ZINRVIQBCHAZMM-UHFFFAOYAC + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +46 + +> +0.120728919221592 + +> +35 + +> +TD50 is harmonic mean of more than one positive test + +> +kidney; large intestine; liver; urinary bladder + +> +kidney; large intestine; liver; urinary bladder + +> +active + +> +477 + +> +1.25190640149347 + +> +27 + +> +TD50 is harmonic mean of more than one positive test + +> +liver; lung; stomach + +> +liver; lung; stomach + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TR 383 + +> +http://potency.berkeley.edu/chempages/1-AMINO-2,4-DIBROMOANTHRAQUINONE.html + +$$$$ + + + + 14 14 0 0 0 0 0 0 0 0 1 V2000 + 5.9919 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3210 -1.1555 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9919 -2.3110 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3210 -3.4572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9977 -3.4572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3268 -2.3110 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9977 -1.1555 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9942 -2.3110 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3326 -3.4572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9942 -4.6127 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3245 -2.3110 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9861 -3.4572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.3187 -3.4572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 1 0 0 0 0 +M END +> +20053 + +> +53 + +> +20053 + +> +54_CPDBAS_v5c + +> +C10H14N2O2 + +> +194.2304 + +> +defined organic + +> +parent + +> +tested chemical + +> +3-Amino-4-ethoxyacetanilide + +> +17026-81-2 + +> +single chemical compound + +> +N-[3-amino-4-(ethyloxy)phenyl]acetamide + +> +NC1=C(C=CC(=C1)NC(=O)C)OCC + +> +NC1=C(C=CC(=C1)NC(=O)C)OCC + +> +InChI=1/C10H14N2O2/c1-3-14-10-5-4-8(6-9(10)11)12-7(2)13/h4-6H,3,11H2,1-2H3,(H,12,13)/f/h12H + +> +XTXFAVHDQCHWCS-XWKXFZRBCV + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +2070 + +> +10.6574460022736 + +> +17 + +> +thyroid gland + +> +no positive results + +> +active + +> +active + +> +TR 112 + +> +http://potency.berkeley.edu/chempages/3-AMINO-4-ETHOXYACETANILIDE.html + +$$$$ + + + + 18 19 0 0 0 0 0 0 0 0 1 V2000 + 3.6099 -7.5422 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1990 -6.2771 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.0854 -5.2860 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4149 -5.4310 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9548 -4.2143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2763 -4.0773 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0579 -5.1490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5180 -6.3658 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1965 -6.5027 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.9637 -3.3199 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8114 -3.9887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6591 -3.3199 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6591 -1.9903 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8114 -1.3296 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.9637 -1.9903 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8114 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.8195 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3296 -3.8195 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 11 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 9 2 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 10 11 2 0 0 0 0 + 10 15 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 2 0 0 0 0 + 14 16 1 0 0 0 0 + 17 18 1 0 0 0 0 +M END +> +20054 + +> +54 + +> +20054 + +> +55_CPDBAS_v5c + +> +C14H15ClN2 + +> +246.7353 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +3-Amino-9-ethylcarbazole.HCl + +> +6109-97-3 + +> +single chemical compound + +> +parent [132-32-1] + +> +9-ethyl-9H-carbazol-3-amine hydrochloride + +> +CCN1(C2C(=CC=CC=2)C3=C1C=CC(=C3)N).[H]Cl + +> +CCN1(C2C(=CC=CC=2)C3=C1C=CC(=C3)N) + +> +InChI=1/C14H14N2.ClH/c1-2-16-13-6-4-3-5-11(13)12-9-10(15)7-8-14(12)16;/h3-9H,2,15H2,1H3;1H + +> +UUYSTZWIFZYHRM-UHFFFAOYAB + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +57.2 + +> +0.231827387487725 + +> +32 + +> +TD50 is harmonic mean of more than one positive test + +> +ear Zymbals gland; liver; skin + +> +ear Zymbals gland; liver; uterus + +> +active + +> +38.6 + +> +0.156442957290667 + +> +37 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TR 93 + +> +http://potency.berkeley.edu/chempages/3-AMINO-9-ETHYLCARBAZOLE.HCl.html + +$$$$ + + + + 16 18 0 0 0 0 0 0 0 0 1 V2000 + 2.8854 -1.7137 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0066 -2.7097 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1011 -2.2629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 -3.8595 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9547 -3.5738 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0066 -5.0166 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.0312 -4.3575 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3168 -1.7137 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6738 -2.7097 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6738 -5.0166 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2469 -3.8155 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.8595 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3934 -2.4973 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3235 -4.5991 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6145 -0.4174 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3475 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 15 1 0 0 0 0 + 2 4 2 0 0 0 0 + 2 9 1 0 0 0 0 + 3 5 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 5 7 1 0 0 0 0 + 6 10 2 0 0 0 0 + 7 11 2 0 0 0 0 + 8 13 2 0 0 0 0 + 9 12 2 0 0 0 0 + 10 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 11 14 1 0 0 0 0 + 15 16 1 0 0 0 0 +M END +> +20055 + +> +55 + +> +20055 + +> +56_CPDBAS_v5c + +> +C14H15N2 + +> +210.2744 + +> +defined organic + +> +parent + +> +representative component in mixture + +> +3-Amino-9-ethylcarbazole mixture + +> +NOCAS + +> +mixture or formulation + +> +mixture, structure shown 3-Amino-9-ethylcarbazole [132-32-1] + +> +9-ethyl-9H-carbazol-3-amine + +> +CCN1(C2C(=CC=CC=2)C3=C1C=CC(=C3)N) + +> +CCN1(C2C(=CC=CC=2)C3=C1C=CC(=C3)N) + +> +InChI=1/C14H14N2/c1-2-16-13-6-4-3-5-11(13)12-9-10(15)7-8-14(12)16/h3-9H,2,15H2,1H3 + +> +OXEUETBFKVCRNP-UHFFFAOYAV + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +26.4 + +> +50 + +> +TD50 is harmonic mean of more than one positive test; TD50_Rat_mmol was not calculated for this mixture, but Activiity Score is assigned value of "50" to indicate active + +> +ear Zymbals gland; liver; skin + +> +ear Zymbals gland + +> +active + +> +38 + +> +50 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TD50_Rat_mmol and TD50_Mouse_mmol conversions from mg values not provided due substance being a mixture + +> +TR 93 + +> +http://potency.berkeley.edu/chempages/3-AMINO-9-ETHYLCARBAZOLE%20MIXTURE.html + +$$$$ + + + + 20 21 0 0 0 0 0 0 0 0 1 V2000 + 14.3944 -3.3539 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 13.1277 -2.9365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.8542 -1.6410 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 12.1345 -3.8289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.8822 -3.4259 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.8026 -4.2032 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.7230 -3.4259 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4563 -3.8289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4775 -2.9365 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2108 -3.3539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2176 -2.4615 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.9509 -2.8789 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9720 -1.9864 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6621 -2.2599 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1084 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8925 -0.1152 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1016 -0.6621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2531 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1405 -2.1592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.4648 -2.1592 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 20 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 19 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 13 17 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 + 17 18 1 0 0 0 0 + 19 20 1 0 0 0 0 +M END +> +20056 + +> +56 + +> +39236 + +> +57_CPDBAS_v5c + +> +C9H14N8S3 + +> +330.4561 + +> +defined organic + +> +parent + +> +tested chemical + +> +3-Amino-4-[2-[(2-guanidinothiazol-4-yl)methylthio], ethylamino]-1,2,5-thiadiazole + +> +78441-84-6 + +> +single chemical compound + +> +BL-6341 + +> +1-{4-[({2-[(4-amino-1,2,5-thiadiazol-3-yl)amino]ethyl}sulfanyl)methyl]-1,3-thiazol-2-yl}guanidine + +> +N=C(N)NC1=NC(CSCCNC2=NSN=C2N)=CS1 + +> +N=C(N)NC1=NC(CSCCNC2=NSN=C2N)=CS1 + +> +InChI=1/C9H14N8S3/c10-6-7(17-20-16-6)13-1-2-18-3-5-4-19-9(14-5)15-8(11)12/h4H,1-3H2,(H2,10,16)(H,13,17)(H4,11,12,14,15)/f/h11,13,15H,10,12H2 + +> +MOMKQYRYLQUFMV-GVMYFUFNCD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +4990 + +> +15.1003416187506 + +> +14 + +> +TD50 is harmonic mean of more than one positive test + +> +stomach + +> +stomach + +> +active + +> +active + +> +active + +> +multisex active + +> +Rat added v2a; CPDB lists HCl complex in some instances in tables but referenced study for this chemical does not specify HCl complex - parent is assumed correct + +> +http://potency.berkeley.edu/chempages/3-AMINO-4-[2-[(2-GUANIDINOTHIAZOL-4-YL)METHYLTHIO].html + +$$$$ + + + + 18 20 0 0 0 0 0 0 0 0 1 V2000 + 4.6526 -4.6047 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9902 -3.4555 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6526 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9853 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6477 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9853 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6526 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9902 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6575 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9951 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9951 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6575 -3.4555 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9951 -4.6047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6624 -4.6047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4555 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6624 -2.2984 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9804 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6477 -3.4555 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 12 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 18 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 17 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +20057 + +> +57 + +> +20057 + +> +58_CPDBAS_v5c + +> +C15H11NO2 + +> +237.2533 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Amino-2-methylanthraquinone + +> +82-28-0 + +> +single chemical compound + +> +C.I. 60700 + +> +1-amino-2-methylanthracene-9,10-dione + +> +O=C1C2=C(C(=CC=C2C(=O)C3=C1C=CC=C3)C)N + +> +O=C1C2=C(C(=CC=C2C(=O)C3=C1C=CC=C3)C)N + +> +InChI=1/C15H11NO2/c1-8-6-7-11-12(13(8)16)15(18)10-5-3-2-4-9(10)14(11)17/h2-7H,16H2,1H3 + +> +ZLCUIOWQYBYEBG-UHFFFAOYAP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +59.2 + +> +0.249522345948402 + +> +32 + +> +TD50 is harmonic mean of more than one positive test + +> +kidney; liver + +> +liver + +> +active + +> +174 + +> +0.733393381672668 + +> +30 + +> +no positive results + +> +liver + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TR 111 + +> +http://potency.berkeley.edu/chempages/1-AMINO-2-METHYLANTHRAQUINONE.html + +$$$$ + + + + 14 15 0 0 0 0 0 0 0 0 2 V2000 + 2.3652 -3.2915 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1511 -2.7519 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2950 -1.4299 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.5900 -1.1511 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2555 -2.3022 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5865 -2.4461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4768 -1.4569 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6908 -1.9965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.5469 -3.3184 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2430 -3.5972 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8419 -1.3310 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 7.8419 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.9931 -1.9965 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4174 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 14 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 10 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 11 1 0 0 0 0 + 9 10 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 13 1 0 0 0 0 +M CHG 2 11 1 13 -1 +M END +> +20058 + +> +58 + +> +20058 + +> +59_CPDBAS_v5c + +> +C6H4N4O4 + +> +196.122 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-5-(5-nitro-2-furyl)-1,3,4-oxadiazole + +> +3775-55-1 + +> +single chemical compound + +> +5-(5-nitrofuran-2-yl)-1,3,4-oxadiazol-2-amine + +> +O1C(=NN=C1C2OC(=CC=2)[N+](=O)[O-])N + +> +O1C(=NN=C1C2OC(=CC=2)[N+](=O)[O-])N + +> +InChI=1/C6H4N4O4/c7-6-9-8-5(14-6)3-1-2-4(13-3)10(11)12/h1-2H,(H2,7,9)/f/h7H2 + +> +VTWQUFUBSCXPOW-IAUQMDSZCD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +3.67 + +> +1.87128420065062E-02 + +> +44 + +> +kidney; lung; mammary gland; stomach + +> +active + +> +active + +> +active + +> +multisite active + +> +http://potency.berkeley.edu/chempages/2-AMINO-5-(5-NITRO-2-FURYL)-1,3,4-OXADIAZOLE.html + +$$$$ + + + + 14 15 0 0 0 0 0 0 0 0 2 V2000 + 8.4233 -3.5294 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5389 -2.5523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2248 -2.6870 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6857 -1.4825 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3970 -1.2045 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4957 -2.1985 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2743 -1.4320 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0698 -1.9626 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1877 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 0.9266 -3.2767 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.5523 -0.1348 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6713 -0.5981 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8168 -1.2551 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 14 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 13 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 12 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 11 2 0 0 0 0 + 8 9 1 0 0 0 0 + 8 10 2 0 0 0 0 + 11 12 1 0 0 0 0 + 13 14 1 0 0 0 0 +M CHG 2 8 1 9 -1 +M END +> +20059 + +> +59 + +> +20059 + +> +60_CPDBAS_v5c + +> +C6H4N4O3S + +> +212.1826 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-5-(5-nitro-2-furyl)-1,3,4-thiadiazole + +> +712-68-5 + +> +single chemical compound + +> +5-(5-nitrofuran-2-yl)-1,3,4-thiadiazol-2-amine + +> +NC1=NN=C(C2=CC=C([N+]([O-])=O)O2)S1 + +> +NC1=NN=C(C2=CC=C([N+]([O-])=O)O2)S1 + +> +InChI=1/C6H4N4O3S/c7-6-9-8-5(14-6)3-1-2-4(13-3)10(11)12/h1-2H,(H2,7,9)/f/h7H2 + +> +SXZZHGJWUBJKHH-IAUQMDSZCG + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0.662 + +> +3.11995422810353E-03 + +> +52 + +> +kidney; lung; mammary gland; stomach + +> +active + +> +active + +> +active + +> +multisite active + +> +http://potency.berkeley.edu/chempages/2-AMINO-5-(5-NITRO-2-FURYL)-1,3,4-THIADIAZOLE.html + +$$$$ + + + + 14 15 0 0 0 0 0 0 0 0 2 V2000 + 5.7002 -2.7618 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4855 -1.6853 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.7473 -2.1001 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.7473 -3.4236 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4855 -3.8383 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8238 -1.3147 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3678 -2.7618 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5825 -3.8383 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3207 -3.4236 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3207 -2.1001 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5825 -1.6853 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2442 -1.3147 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.7912 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.4471 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 2 0 0 0 0 + 1 7 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 11 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 10 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 12 14 2 0 0 0 0 +M CHG 2 12 1 13 -1 +M END +> +20060 + +> +60 + +> +39237 + +> +61_CPDBAS_v5c + +> +C7H5N3O3S + +> +211.1948 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-4-(5-nitro-2-furyl)thiazole + +> +38514-71-5 + +> +single chemical compound + +> +4-(5-nitrofuran-2-yl)-1,3-thiazol-2-amine + +> +NC1=NC(C2=CC=C([N+]([O-])=O)O2)=CS1 + +> +NC1=NC(C2=CC=C([N+]([O-])=O)O2)=CS1 + +> +InChI=1/C7H5N3O3S/c8-7-9-4(3-14-7)5-1-2-6(13-5)10(11)12/h1-3H,(H2,8,9)/f/h8H2 + +> +ZAVLMIGIVYJYMU-FSHFIPFOCT + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +5.85 + +> +2.76995456327523E-02 + +> +42 + +> +stomach; urinary bladder + +> +active + +> +7.87 + +> +3.72641750649164E-02 + +> +44 + +> +stomach + +> +active + +> +active + +> +active + +> +multisite active; multispecies active + +> +http://potency.berkeley.edu/chempages/2-AMINO-4-(5-NITRO-2-FURYL)THIAZOLE.html + +$$$$ + + + + 16 17 0 0 0 0 0 0 0 0 2 V2000 + 0.0000 -7.5449 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.4042 -6.3035 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.7130 -6.3035 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1172 -7.5449 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0586 -8.3148 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0586 -9.6236 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4829 -5.2449 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8109 -5.2545 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.8310 -3.9649 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.7637 -2.6561 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9859 -2.1846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.8135 -3.2047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1014 -4.3017 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3227 -0.9239 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 7.5930 -0.5870 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3988 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 9 13 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 14 1 0 0 0 0 + 12 13 1 0 0 0 0 + 14 15 2 0 0 0 0 + 14 16 1 0 0 0 0 +M CHG 2 14 1 16 -1 +M END +> +20061 + +> +61 + +> +20061 + +> +62_CPDBAS_v5c + +> +C8H6N4O4 + +> +222.1598 + +> +defined organic + +> +parent + +> +tested chemical + +> +trans-5-Amino-3[2-(5-nitro-2-furyl)vinyl]-1,2,4-oxadiazole + +> +28754-68-9 + +> +single chemical compound + +> +stereochem + +> +3-[(E)-2-(5-nitrofuran-2-yl)ethenyl]-1,2,4-oxadiazol-5-amine + +> +NC1=NC(/C=C/C2=CC=C([N+]([O-])=O)O2)=NO1 + +> +NC1=NC(/C=C/C2=CC=C([N+]([O-])=O)O2)=NO1 + +> +InChI=1/C8H6N4O4/c9-8-10-6(11-16-8)3-1-5-2-4-7(15-5)12(13)14/h1-4H,(H2,9,10,11)/b3-1+/f/h9H2 + +> +RMZNNIOKNRDECR-OYGOROAMDP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +112 + +> +0.504141613379198 + +> +32 + +> +TD50 is harmonic mean of more than one positive test + +> +hematopoietic system; stomach + +> +hematopoietic system; stomach + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/trans-5-AMINO-3[2-(5-NITRO-2-FURYL)VINYL]-1,2,4-OX.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 2 V2000 + 0.0000 -3.4525 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6642 -2.3037 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 1.9925 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6567 -1.1488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -1.1488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6552 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -3.4525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6567 -3.4525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9835 -2.3037 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6552 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1488 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 11 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 9 1 0 0 0 0 + 7 8 2 0 0 0 0 +M CHG 2 2 1 11 -1 +M END +> +20062 + +> +62 + +> +20062 + +> +63_CPDBAS_v5c + +> +C6H6N2O3 + +> +154.1234 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-4-nitrophenol + +> +99-57-0 + +> +single chemical compound + +> +2-amino-4-nitrophenol + +> +O=[N+](C1=CC(=C(C=C1)O)N)[O-] + +> +O=[N+](C1=CC(=C(C=C1)O)N)[O-] + +> +InChI=1/C6H6N2O3/c7-5-3-4(8(10)11)1-2-6(5)9/h1-3,9H,7H2 + +> +VLZVIIYRNMWPSN-UHFFFAOYAN + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +839 + +> +5.44368992638366 + +> +18 + +> +kidney + +> +no positive results + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +TR 339 + +> +http://potency.berkeley.edu/chempages/2-AMINO-4-NITROPHENOL.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 2 V2000 + 0.0000 -3.4525 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6642 -2.3037 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 1.9925 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6567 -1.1488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -1.1488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6552 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -3.4525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6567 -3.4525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9835 -2.3037 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6552 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1488 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 11 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 9 1 0 0 0 0 + 7 8 2 0 0 0 0 +M CHG 2 2 1 11 -1 +M END +> +20063 + +> +63 + +> +20063 + +> +64_CPDBAS_v5c + +> +C6H6N2O3 + +> +154.1234 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-5-nitrophenol + +> +121-88-0 + +> +single chemical compound + +> +2-amino-5-nitrophenol + +> +O=[N+](C1=CC(=C(C=C1)N)O)[O-] + +> +O=[N+](C1=CC(=C(C=C1)N)O)[O-] + +> +InChI=1/C6H6N2O3/c7-5-2-1-4(8(10)11)3-6(5)9/h1-3,9H,7H2 + +> +DOPJTDJKZNWLRB-UHFFFAOYAU + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +111 + +> +0.720202123752785 + +> +27 + +> +pancreas + +> +no positive results + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +TR 334 + +> +http://potency.berkeley.edu/chempages/2-AMINO-5-NITROPHENOL.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 2 V2000 + 1.9968 -4.6079 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6577 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9968 -2.3039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6577 -1.1543 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9889 -1.1543 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6544 -2.3039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9889 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6544 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6656 -2.3039 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4583 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1543 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 9 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 8 1 0 0 0 0 + 6 7 2 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 +M CHG 2 9 1 11 -1 +M END +> +20064 + +> +64 + +> +20064 + +> +65_CPDBAS_v5c + +> +C6H6N2O3 + +> +154.1234 + +> +defined organic + +> +parent + +> +tested chemical + +> +4-Amino-2-nitrophenol + +> +119-34-6 + +> +single chemical compound + +> +4-amino-2-nitrophenol + +> +OC1=C(C=C(C=C1)N)[N+](=O)[O-] + +> +OC1=C(C=C(C=C1)N)[N+](=O)[O-] + +> +InChI=1/C6H6N2O3/c7-4-1-2-6(9)5(3-4)8(10)11/h1-3,9H,7H2 + +> +WHODQVWERNSQEO-UHFFFAOYAM + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +309 + +> +2.00488699314965 + +> +23 + +> +urinary bladder + +> +no positive results + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +TR 94 + +> +http://potency.berkeley.edu/chempages/4-AMINO-2-NITROPHENOL.html + +$$$$ + + + + 15 16 0 0 0 0 0 0 0 0 2 V2000 + 3.1238 -1.1475 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3406 -2.2222 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0747 -1.8124 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0747 -0.4827 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3406 -0.0729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.5956 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4535 -1.1475 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1184 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4480 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.1129 -1.1475 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4480 -2.3042 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1184 -2.3042 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4426 -1.1475 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 9.1074 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 9.1074 -2.3042 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 2 0 0 0 0 + 1 7 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 12 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 10 13 1 0 0 0 0 + 11 12 2 0 0 0 0 + 13 14 1 0 0 0 0 + 13 15 2 0 0 0 0 +M CHG 2 13 1 14 -1 +M END +> +20065 + +> +65 + +> +39238 + +> +66_CPDBAS_v5c + +> +C9H7N3O2S + +> +221.2332 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-4-(p-nitrophenyl)thiazole + +> +2104-09-8 + +> +single chemical compound + +> +4-(4-nitrophenyl)-1,3-thiazol-2-amine + +> +NC1=NC(C2=CC=C([N+]([O-])=O)C=C2)=CS1 + +> +NC1=NC(C2=CC=C([N+]([O-])=O)C=C2)=CS1 + +> +InChI=1/C9H7N3O2S/c10-9-11-8(5-15-9)6-1-3-7(4-2-6)12(13)14/h1-5H,(H2,10,11)/f/h10H2 + +> +RIKJWJIWXCUKQV-GIMVELNWCN + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +9.95 + +> +4.49751664759177E-02 + +> +43 + +> +hematopoietic system + +> +active + +> +active + +> +http://potency.berkeley.edu/chempages/2-AMINO-4-(p-NITROPHENYL)THIAZOLE.html + +$$$$ + + + + 9 9 0 0 0 0 0 0 0 0 2 V2000 + 5.1188 -0.2969 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4533 -1.4486 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 3.1225 -1.4486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3393 -2.5236 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0749 -2.1141 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0749 -0.7832 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3393 -0.3737 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1188 -2.6003 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 9 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 +M CHG 2 2 1 9 -1 +M END +> +20066 + +> +66 + +> +20066 + +> +67_CPDBAS_v5c + +> +C3H3N3O2S + +> +145.1398 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Amino-5-nitrothiazole + +> +121-66-4 + +> +single chemical compound + +> +5-nitro-1,3-thiazol-2-amine + +> +O=[N+](C1=CN=C(S1)N)[O-] + +> +O=[N+](C1=CN=C(S1)N)[O-] + +> +InChI=1/C3H3N3O2S/c4-3-5-1-2(9-3)6(7)8/h1H,(H2,4,5)/f/h4H2 + +> +MIHADVKEHAFNPG-LGEMBHMGCP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +44.6 + +> +0.307289937012453 + +> +31 + +> +no positive results; NTP assigned level of evidence positive + +> +kidney; lung; mammary gland + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +active + +> +multisite active + +> +TargetSites_Rat_Male modified v3a + +> +TR 53; final call in CPDB differs due to additional data; NTP-assigned level of evidence of carcinogenicity is "positive" in male rat; noting that "these experiments were particularly difficult to evaluate". + +> +http://potency.berkeley.edu/chempages/2-AMINO-5-NITROTHIAZOLE.html + +$$$$ + + + + 16 16 0 0 0 0 0 0 0 0 1 V2000 + 3.1225 -2.3401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3401 -3.4212 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0740 -3.0087 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.7911 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0740 -1.6786 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3401 -1.2661 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.7526 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4526 -2.3401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1212 -1.1878 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4513 -1.1878 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.1128 -2.3401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4513 -3.4924 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1212 -3.4924 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5493 -5.2563 0.0000 Mg 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6944 -5.9178 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3970 -5.9178 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 1 8 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 8 13 2 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 14 15 1 0 0 0 0 + 14 16 1 0 0 0 0 +M END +> +20067 + +> +67 + +> +20067 + +> +68_CPDBAS_v5c + +> +C9H10MgN2O4 + +> +234.494 + +> +defined organic + +> +complex Mg(OH)2 + +> +tested chemical + +> +2-Amino-5-phenyl-2-oxazolin-4-one + Mg(OH)2 + +> +18968-99-5 + +> +single chemical compound + +> +parent [2152-34-3] + +> +2-amino-5-phenyl-1,3-oxazol-4(5H)-one - dihydroxymagnesium (1:1) + +> +NC1=NC(C(C2=CC=CC=C2)O1)=O.O[Mg]O + +> +NC1=NC(C(C2=CC=CC=C2)O1)=O + +> +InChI=1/C9H8N2O2.Mg.2H2O/c10-9-11-8(12)7(13-9)6-4-2-1-3-5-6;;;/h1-5,7H,(H2,10,11,12);;2*1H2/q;+2;;/p-2/fC9H8N2O2.Mg.2HO/h10H2;;2*1h/q;m;2*-1/rC9H8N2O2.H2MgO2/c10-9-11-8(12)7(13-9)6-4-2-1-3-5-6;2-1-3/h1-5,7H,(H2,10,11,12);2-3H/f/h10H2; + +> +JOPOQPCBCUIPFX-VWMXNRJTCY + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/2-AMINO-5-PHENYL-2-OXAZOLIN-4-ONE%20+%20Mg(OH)2.html + +$$$$ + + + + 17 19 0 0 0 0 0 0 0 0 1 V2000 + 3.3283 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9907 -1.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3283 -2.2987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9954 -2.2987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3329 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9954 -4.6053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3283 -4.6053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9907 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3236 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9861 -4.6053 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9861 -2.2987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3236 -1.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9861 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3190 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9814 -1.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3190 -2.2987 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4560 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 12 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 17 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +20068 + +> +68 + +> +20068 + +> +69_CPDBAS_v5c + +> +C14H9NO2 + +> +223.2268 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Aminoanthraquinone + +> +117-79-3 + +> +single chemical compound + +> +2-amino-9,10-anthraquinone + +> +O=C1C2=CC(=CC=C2C(=O)C3=C1C=CC=C3)N + +> +O=C1C2=CC(=CC=C2C(=O)C3=C1C=CC=C3)N + +> +InChI=1/C14H9NO2/c15-8-5-6-11-12(7-8)14(17)10-4-2-1-3-9(10)13(11)16/h1-7H,15H2 + +> +XOGPDSATLSAZEK-UHFFFAOYAH + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +101 + +> +0.452454633583423 + +> +29 + +> +liver + +> +no positive results + +> +active + +> +1190 + +> +5.33090112835914 + +> +20 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +hematopoietic system; liver + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TR 144 + +> +http://potency.berkeley.edu/chempages/2-AMINOANTHRAQUINONE.html + +$$$$ + + + + 17 18 0 0 0 0 0 0 0 0 1 V2000 + 2.6631 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9948 -1.1570 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6631 -2.3040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9948 -3.4610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6683 -3.4610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6683 -1.1570 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9896 -2.3040 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6579 -3.4610 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9844 -3.4610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6527 -2.3040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9793 -2.3040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6475 -3.4610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9793 -4.6080 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6527 -4.6080 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9741 -3.4610 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6475 -1.1570 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 10 15 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 12 17 1 0 0 0 0 + 13 14 1 0 0 0 0 + 13 16 1 0 0 0 0 + 14 15 2 0 0 0 0 +M END +> +20069 + +> +69 + +> +20069 + +> +70_CPDBAS_v5c + +> +C14H15N3 + +> +225.289 + +> +defined organic + +> +parent + +> +tested chemical + +> +o-Aminoazotoluene + +> +97-56-3 + +> +single chemical compound + +> +2-methyl-4-[(E)-(2-methylphenyl)diazenyl]aniline + +> +CC1=C(C=CC=C1)/N=N/C2=CC(=C(C=C2)N)C + +> +CC1=C(C=CC=C1)/N=N/C2=CC(=C(C=C2)N)C + +> +InChI=1/C14H15N3/c1-10-5-3-4-6-14(10)17-16-12-7-8-13(15)11(2)9-12/h3-9H,15H2,1-2H3/b17-16+ + +> +PFRYFZZSECNQOL-WUKNDPDIBU + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +4.04 + +> +1.79325222270062E-02 + +> +44 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +active + +> +multisex active + +> +http://potency.berkeley.edu/chempages/o-AMINOAZOTOLUENE.html + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1544 -0.6620 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1544 -1.9939 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3088 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4632 -0.6620 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6095 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7639 -0.6620 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9183 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0727 -0.6620 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 +M END +> +20070 + +> +70 + +> +20070 + +> +71_CPDBAS_v5c + +> +C6H13NO2 + +> +131.1742 + +> +defined organic + +> +parent + +> +tested chemical + +> +6-Aminocaproic acid + +> +60-32-2 + +> +single chemical compound + +> +6-aminohexanoic acid + +> +OC(=O)CCCCCN + +> +OC(=O)CCCCCN + +> +InChI=1/C6H13NO2/c7-5-3-1-2-4-6(8)9/h1-5,7H2,(H,8,9)/f/h8H + +> +SLXKOJJOQWFEFD-FZOZFQFYCD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/6-AMINOCAPROIC%20ACID.html + +$$$$ + + + + 13 14 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.1562 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3316 -1.1562 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9935 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3251 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9869 -1.1562 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3251 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9935 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3186 -1.1562 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9804 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3120 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9739 -1.1562 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3120 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9804 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 8 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 2 0 0 0 0 + 8 13 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 +M END +> +20071 + +> +71 + +> +20071 + +> +72_CPDBAS_v5c + +> +C12H11N + +> +169.2224 + +> +defined organic + +> +parent + +> +tested chemical + +> +4-Aminodiphenyl + +> +92-67-1 + +> +single chemical compound + +> +biphenyl-4-amine + +> +NC1=CC=C(C=C1)C2=CC=CC=C2 + +> +NC1=CC=C(C=C1)C2=CC=CC=C2 + +> +InChI=1/C12H11N/c13-12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9H,13H2 + +> +DMVOXQPQNTYEKQ-UHFFFAOYAX + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +active + +> +2.1 + +> +1.24097046253924E-02 + +> +50 + +> +TD50 is harmonic mean of more than one positive test + +> +liver; urinary bladder + +> +liver; urinary bladder + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/4-AMINODIPHENYL.html + +$$$$ + + + + 15 15 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.1502 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3339 -1.1502 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9969 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3308 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9937 -1.1502 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3308 -2.3004 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9969 -2.3004 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3276 -1.1502 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9906 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3245 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9875 -1.1502 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3245 -2.3004 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9906 -2.3004 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3308 -3.6343 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6567 -3.6343 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 8 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 2 0 0 0 0 + 8 13 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 14 15 1 0 0 0 0 +M END +> +20072 + +> +72 + +> +20072 + +> +73_CPDBAS_v5c + +> +C12H12ClN + +> +205.6865 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +4-Aminodiphenyl.HCl + +> +2113-61-3 + +> +single chemical compound + +> +parent [92-67-1] + +> +biphenyl-4-amine hydrochloride + +> +NC1(=CC=C(C=C1)C2=CC=CC=C2).[H]Cl + +> +NC1(=CC=C(C=C1)C2=CC=CC=C2) + +> +InChI=1/C12H11N.ClH/c13-12-8-6-11(7-9-12)10-4-2-1-3-5-10;/h1-9H,13H2;1H + +> +GUHXYHYUBFCYGJ-UHFFFAOYAT + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +active + +> +0.98 + +> +4.76453243163747E-03 + +> +50 + +> +mammary gland + +> +active + +> +active + +> +http://potency.berkeley.edu/chempages/4-AMINODIPHENYL.HCl.html + +$$$$ + + + + 14 16 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.8880 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0775 -2.1037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2943 -2.6461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3645 -1.8618 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6692 -2.1404 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3363 -0.9896 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6630 -0.9896 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3301 -2.1404 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6630 -3.2912 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3363 -3.2912 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4420 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2326 -0.5424 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0158 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.9382 -0.7770 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 14 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 12 2 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 +M END +> +20073 + +> +73 + +> +39239 + +> +74_CPDBAS_v5c + +> +C12H9NO + +> +183.2092 + +> +defined organic + +> +parent + +> +tested chemical + +> +2-Aminodiphenylene oxide + +> +3693-22-9 + +> +single chemical compound + +> +dibenzo[b,d]furan-2-amine + +> +NC3=CC1=C(C=C3)OC2=C1C=CC=C2 + +> +NC3=CC1=C(C=C3)OC2=C1C=CC=C2 + +> +InChI=1/C12H9NO/c13-8-5-6-12-10(7-8)9-3-1-2-4-11(9)14-12/h1-7H,13H2 + +> +FFYZMBQLAYDJIG-UHFFFAOYAK + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +4.24 + +> +0.023142942603319 + +> +47 + +> +TD50 is harmonic mean of more than one positive test; harmonic mean of TD50 includes a value for upper 99% confidence limit from study with 100% tumor incidence but no lifetable + +> +liver; urinary bladder + +> +liver + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/2-AMINODIPHENYLENE%20OXIDE.html + +$$$$ + + + + 12 12 0 0 0 0 0 0 0 0 1 V2000 + 4.0663 -4.2139 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.6134 -2.9635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3039 -2.7322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.7568 -1.4818 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.0663 -1.2504 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.9228 -2.2694 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5241 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3039 -4.0613 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1519 -4.7259 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.0613 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.7322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1519 -2.0676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 7 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 +M END +> +20074 + +> +74 + +> +20074 + +> +75_CPDBAS_v5c + +> +C9H17NO2 + +> +171.2388 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-(Aminomethyl)cyclohexaneacetic acid + +> +60142-96-3 + +> +single chemical compound + +> +[1-(aminomethyl)cyclohexyl]acetic acid + +> +NCC1(CC(=O)O)CCCCC1 + +> +NCC1(CC(=O)O)CCCCC1 + +> +InChI=1/C9H17NO2/c10-7-9(6-8(11)12)4-2-1-3-5-9/h1-7,10H2,(H,11,12)/f/h11H + +> +UGJMXCAKCUNAIE-WXRBYKJCCG + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +5850 + +> +34.1628182397914 + +> +10 + +> +pancreas + +> +no positive results + +> +active + +> +active + +> +Rat added v3a + +> +http://potency.berkeley.edu/chempages/1-(AMINOMETHYL)CYCLOHEXANEACETIC%20ACID.html + +$$$$ + + + + 19 18 0 0 0 0 0 0 0 0 1 V2000 + 1.3251 -5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3129 -4.5673 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9543 -2.2881 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2829 -3.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2829 -1.1396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9666 -3.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9666 -1.1396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3129 -2.2881 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9543 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3129 -6.8554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9666 -5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9877 -4.5673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9666 -8.0039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -5.7158 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4827 -6.6964 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1133 -5.3448 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4827 -5.3448 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8343 -5.3448 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4827 -3.9754 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 12 1 0 0 0 0 + 1 14 1 0 0 0 0 + 2 6 1 0 0 0 0 + 2 11 1 0 0 0 0 + 2 12 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 4 6 2 0 0 0 0 + 5 7 1 0 0 0 0 + 5 9 1 0 0 0 0 + 6 8 1 0 0 0 0 + 7 8 2 0 0 0 0 + 10 11 1 0 0 0 0 + 10 13 1 0 0 0 0 + 15 17 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 2 0 0 0 0 + 17 19 2 0 0 0 0 +M END +> +20075 + +> +75 + +> +20075 + +> +76_CPDBAS_v5c + +> +C10H18N2O6S + +> +294.3247 + +> +defined organic + +> +complex H2SO4 + +> +tested chemical + +> +2,2'-[(4-Aminophenyl)imino]bisethanol sulfate + +> +54381-16-7 + +> +single chemical compound + +> +parent [7575-35-1] + +> +2,2'-[(4-aminophenyl)imino]diethanol sulfate (salt) + +> +OS(O)(=O)=O.OCCN(CCO)c1ccc(N)cc1 + +> +OCCN(CCO)c1ccc(N)cc1 + +> +InChI=1/C10H16N2O2.H2O4S/c11-9-1-3-10(4-2-9)12(5-7-13)6-8-14;1-5(2,3)4/h1-4,13-14H,5-8,11H2;(H2,1,2,3,4)/f/h;1-2H + +> +KMCFMEHSEWDYKG-ATDHBCBACR + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +Rat added v2a + +> +http://potency.berkeley.edu/chempages/2,2'-[(4-AMINOPHENYL)IMINO]BISETHANOL%20SULFATE.html + +$$$$ + + + + 6 6 0 0 0 0 0 0 0 0 1 V2000 + 1.3304 -1.0738 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1104 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3767 -0.4086 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3767 -1.7390 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1104 -2.1509 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.0738 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 2 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 +M END +> +20076 + +> +76 + +> +20076 + +> +77_CPDBAS_v5c + +> +C2H4N4 + +> +84.08 + +> +defined organic + +> +parent + +> +tested chemical + +> +3-Aminotriazole + +> +61-82-5 + +> +single chemical compound + +> +tautomers + +> +1H-1,2,4-triazol-3-amine + +> +C1(N=CNN=1)N + +> +C1(N=CNN=1)N + +> +InChI=1/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)/f/h5H,3H2 + +> +KLSJWNVTNUYHDU-YPUDGCQOCD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse; hamster + +> +inactive + +> +9.94 + +> +0.118220742150333 + +> +35 + +> +TD50 is harmonic mean of more than one positive test + +> +thyroid gland + +> +pituitary gland; thyroid gland + +> +active + +> +25.3 + +> +0.300903901046622 + +> +34 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +liver + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +http://potency.berkeley.edu/chempages/3-AMINOTRIAZOLE.html + +$$$$ + + + + 14 13 0 0 0 0 0 0 0 0 1 V2000 + 1.1352 -1.3403 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2703 -2.0241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4055 -1.3403 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5680 -2.0241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7032 -1.3403 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.8383 -2.0241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9735 -1.3403 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1086 -2.0241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.2712 -1.3403 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.4063 -2.0241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.5415 -1.3403 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1352 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.0241 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 13.6766 -2.0241 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 13 1 0 0 0 0 + 1 12 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 14 1 0 0 0 0 +M END +> +20077 + +> +77 + +> +20077 + +> +78_CPDBAS_v5c + +> +C11H23NO2 + +> +201.3058 + +> +defined organic + +> +parent + +> +tested chemical + +> +11-Aminoundecanoic acid + +> +2432-99-7 + +> +single chemical compound + +> +11-aminoundecanoic acid + +> +OC(=O)CCCCCCCCCCN + +> +OC(=O)CCCCCCCCCCN + +> +InChI=1/C11H23NO2/c12-10-8-6-4-2-1-3-5-7-9-11(13)14/h1-10,12H2,(H,13,14)/f/h13H + +> +GUOSQNAUYHMCRU-NDKGDYFDCZ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +1100 + +> +5.46432343231044 + +> +18 + +> +liver; urinary bladder + +> +no positive results + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +active + +> +multisite active + +> +TR 216 + +> +http://potency.berkeley.edu/chempages/11-AMINOUNDECANOIC%20ACID.html + +$$$$ + + + + 6 4 0 0 0 0 0 0 0 0 2 V2000 + 2.6600 -2.6600 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 -1.3320 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 1.3280 -1.3320 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9880 -1.3320 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3320 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 1 0 0 0 0 + 2 5 1 0 0 0 0 +M CHG 2 2 1 6 -1 +M END +> +20078 + +> +78 + +> +20078 + +> +79_CPDBAS_v5c + +> +H4ClN + +> +53.4915 + +> +inorganic + +> +tested chemical + +> +Ammonium chloride + +> +12125-02-9 + +> +single chemical compound + +> +ammonium chloride + +> +[H][N+]([H])([H])[H].[Cl-] + +> +InChI=1/ClH.H3N/h1H;1H3/fCl.H4N/h1h;1H/q-1;+1 + +> +NLXLAEXVIDQMFP-DWOZJLMICO + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/AMMONIUM%20CHLORIDE.html + +$$$$ + + + + 15 12 0 0 0 0 0 0 0 0 2 V2000 + 2.3011 -1.9952 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3011 -3.3253 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1505 -3.9903 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.3253 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.1505 -5.3204 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.6312 -1.9952 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2963 -3.1457 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.6312 -4.2963 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6264 -3.1457 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3011 -0.6651 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4583 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.1505 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.9710 -1.9952 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.7932 -6.6506 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 1.4631 -6.6506 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 1 10 1 0 0 0 0 + 1 13 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 9 2 0 0 0 0 + 10 11 1 0 0 0 0 + 10 12 2 0 0 0 0 +M CHG 4 4 -1 11 -1 14 1 15 1 +M END +> +20079 + +> +79 + +> +20079 + +> +80_CPDBAS_v5c + +> +C6H14N2O7 + +> +226.1858 + +> +defined organic + +> +complex 2NH4 + +> +tested chemical + +> +Ammonium citrate + +> +3012-65-5 + +> +single chemical compound + +> +parent [77-92-9] + +> +diammonium 2-(carboxymethyl)-2-hydroxybutanedioate + +> +C(CC([O-])=O)(CC(O)=O)(C([O-])=O)O.[N+].[N+] + +> +C(CC(O)=O)(CC(O)=O)(C(O)=O)O + +> +InChI=1/C6H8O7.2H3N/c7-3(8)1-6(13,5(11)12)2-4(9)10;;/h13H,1-2H2,(H,7,8)(H,9,10)(H,11,12);2*1H3/fC6H6O7.2H4N/h7H;2*1H/q-2;2*+1 + +> +YXVFQADLFFNVDS-JYGIMERMCP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/AMMONIUM%20CITRATE.html + +$$$$ + + + + 2 0 0 0 0 0 0 0 0 0 2 V2000 + 10.0000 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.3600 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 +M CHG 2 1 1 2 -1 +M END +> +20080 + +> +80 + +> +20080 + +> +81_CPDBAS_v5c + +> +H5NO + +> +35.0458 + +> +inorganic + +> +tested chemical + +> +Ammonium hydroxide + +> +1336-21-6 + +> +single chemical compound + +> +ammonium hydroxide + +> +[N+].[O-] + +> +InChI=1/H3N.H2O/h1H3;1H2/fH4N.HO/h1H;1h/q+1;-1 + +> +VHUUQVKOLVNVRT-QBBVKLOVCT + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/AMMONIUM%20HYDROXIDE.html + +$$$$ + + + + 16 16 0 0 0 0 0 0 0 0 1 V2000 + 3.1752 -3.9923 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3269 -3.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3269 -2.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4787 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4787 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6305 -2.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6305 -3.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.7823 -3.9923 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4787 -3.9923 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0195 -2.2257 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1635 -1.2140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8560 -1.4397 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.3969 -2.6927 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.4202 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8756 -0.7471 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.5604 -0.5214 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 9 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 10 1 0 0 0 0 + 3 15 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 9 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 12 14 1 0 0 0 0 + 15 16 1 0 0 0 0 +M END +> +20081 + +> +81 + +> +20081 + +> +82_CPDBAS_v5c + +> +C11H18N2O3 + +> +226.2748 + +> +defined organic + +> +parent + +> +tested chemical + +> +Amobarbital + +> +57-43-2 + +> +single chemical compound + +> +5-ethyl-5-(3-methylbutyl)pyrimidine-2,4,6(1H,3H,5H)-trione + +> +N1C(=O)C(CC)(CCC(C)C)C(=O)NC1=O + +> +N1C(=O)C(CC)(CCC(C)C)C(=O)NC1=O + +> +InChI=1/C11H18N2O3/c1-4-11(6-5-7(2)3)8(14)12-10(16)13-9(11)15/h7H,4-6H2,1-3H3,(H2,12,13,14,15,16)/f/h12-13H + +> +VIROVYVQCGLCII-BAINRFMOCW + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/AMOBARBITAL.html + +$$$$ + + + + 25 24 0 0 0 0 0 0 0 0 1 V2000 + 1.3247 -4.6461 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3247 -3.3214 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.3214 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6591 -3.3214 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3247 -1.9967 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1331 -2.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9837 -1.9967 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9837 -0.6623 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1331 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2922 -0.6623 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2922 -1.9967 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4415 -2.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5908 -1.9967 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5908 -0.6623 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.7402 -2.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1331 -6.6428 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9837 -5.9805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9837 -4.6461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1331 -3.9837 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2922 -4.6461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2922 -5.9805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4415 -6.6428 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5908 -5.9805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5908 -4.6461 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.7402 -6.6428 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 1 0 0 0 0 + 2 5 2 0 0 0 0 + 6 7 2 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 1 0 0 0 0 + 13 15 1 0 0 0 0 + 16 17 2 0 0 0 0 + 16 21 1 0 0 0 0 + 17 18 1 0 0 0 0 + 18 19 2 0 0 0 0 + 19 20 1 0 0 0 0 + 20 21 2 0 0 0 0 + 21 22 1 0 0 0 0 + 22 23 1 0 0 0 0 + 23 24 1 0 0 0 0 + 23 25 1 0 0 0 0 +M END +> +20082 + +> +82 + +> +20082 + +> +83_CPDBAS_v5c + +> +C18H28N2O4S + +> +368.4909 + +> +defined organic + +> +complex bis H2SO4 + +> +tested chemical + +> +dl-Amphetamine sulfate + +> +60-13-9 + +> +single chemical compound + +> +racemic mixture of L- [51-62-7] and D- [51-63-8], parent [300-62-9], structure shown without stereochem + +> +1-phenylpropan-2-amine sulfate (2:1) + +> +O=S(O)(O)=O.C1(=CC=CC=C1CC(N)C).C2=CC=CC=C2CC(N)C + +> +C1=CC=CC=C1CC(N)C + +> +InChI=1/2C9H13N.H2O4S/c2*1-8(10)7-9-5-3-2-4-6-9;1-5(2,3)4/h2*2-6,8H,7,10H2,1H3;(H2,1,2,3,4)/f/h;;1-2H + +> +PYHRZPFZZDCOPH-IPLSSONACD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 387 + +> +http://potency.berkeley.edu/chempages/dl-AMPHETAMINE%20SULFATE.html + +$$$$ + + + + 29 28 0 0 1 0 0 0 0 0 1 V2000 + 7.0899 -2.6689 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4012 -3.9801 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4012 -2.6689 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0899 -3.9801 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.6776 -4.3979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.4667 -3.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.6776 -2.2627 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4244 -1.3228 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0783 -1.3228 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7439 -2.6573 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 11.6038 -2.6573 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.6038 -4.0033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.0837 -5.6743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.3834 -5.9528 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1902 -6.6606 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1384 -4.9432 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2976 -0.6498 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2976 -1.9843 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1372 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1372 -2.6573 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6498 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9843 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4463 -2.6573 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4463 -3.9801 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6067 -1.9843 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6067 -0.6498 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0232 -7.1248 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9727 -7.0783 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7132 -7.1712 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 1 0 0 0 0 + 1 9 1 6 0 0 0 + 1 10 1 1 0 0 0 + 2 4 1 0 0 0 0 + 2 5 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 7 1 0 0 0 0 + 3 8 1 6 0 0 0 + 4 16 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 13 1 6 0 0 0 + 6 7 1 0 0 0 0 + 6 11 1 0 0 0 0 + 6 12 1 0 0 0 0 + 10 25 1 0 0 0 0 + 13 14 2 0 0 0 0 + 13 15 1 0 0 0 0 + 17 18 1 0 0 0 0 + 17 19 2 0 0 0 0 + 18 20 2 0 0 0 0 + 18 23 1 0 0 0 0 + 19 21 1 0 0 0 0 + 20 22 1 0 0 0 0 + 21 22 2 0 0 0 0 + 23 24 1 6 0 0 0 + 23 25 1 0 0 0 0 + 25 26 2 0 0 0 0 +M END +> +20083 + +> +83 + +> +20083 + +> +84_CPDBAS_v5c + +> +C16H25N3O7S + +> +403.4506 + +> +defined organic + +> +complex 3H2O + +> +tested chemical + +> +Ampicillin trihydrate + +> +7177-48-2 + +> +single chemical compound + +> +stereochem; parent [69-53-4] + +> +(2S,5R,6R)-6-{[(2R)-2-amino-2-phenylacetyl]amino}-3,3-dimethyl-7-oxo-4-thia-1-azabicyclo[3.2.0]heptane-2-carboxylic acid trihydrate + +> +[H][C@@]12[C@]([H])(NC([C@H](N)C3=CC=CC=C3)=O)C(N1[C@@H]([C@@](O)=O)C(C)(C)S2)=O.O.O.O + +> +[H][C@@]12[C@]([H])(NC([C@H](N)C3=CC=CC=C3)=O)C(N1[C@@H]([C@@](O)=O)C(C)(C)S2)=O + +> +InChI=1/C16H19N3O4S.3H2O/c1-16(2)11(15(22)23)19-13(21)10(14(19)24-16)18-12(20)9(17)8-6-4-3-5-7-8;;;/h3-7,9-11,14H,17H2,1-2H3,(H,18,20)(H,22,23);3*1H2/t9-,10-,11+,14-;;;/m1.../s1/f/h18,22H;;; + +> +RXDALBZNGVATNY-FQLIROBNDT + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +structure modified v5b + +> +TR 318 + +> +http://potency.berkeley.edu/chempages/AMPICILLIN%20TRIHYDRATE.html + +$$$$ + + + + 11 10 0 0 0 0 0 0 0 0 1 V2000 + 1.1536 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3071 -0.6696 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3071 -2.0006 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4607 -2.6621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6062 -2.0006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7598 -2.6621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9133 -2.0006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0669 -2.6621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1536 -2.6621 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.0006 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4607 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 11 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 9 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 9 10 2 0 0 0 0 +M END +> +20084 + +> +84 + +> +20084 + +> +85_CPDBAS_v5c + +> +C6H13N3O2 + +> +159.1876 + +> +defined organic + +> +parent + +> +tested chemical + +> +1-Amyl-1-nitrosourea + +> +10589-74-9 + +> +single chemical compound + +> +1-nitroso-1-pentylurea + +> +O=C(N(CCCCC)N=O)N + +> +O=C(N(CCCCC)N=O)N + +> +InChI=1/C6H13N3O2/c1-2-3-4-5-9(8-11)6(7)10/h2-5H2,1H3,(H2,7,10)/f/h7H2 + +> +YYTNAQDGJQPZFU-IAUQMDSZCI + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0.555 + +> +3.48645246237772E-03 + +> +51 + +> +TD50 is harmonic mean of more than one positive test + +> +hematopoietic system; lung; stomach + +> +hematopoietic system; lung; mammary gland; stomach; uterus + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +TD50_Rat modified v5a + +> +http://potency.berkeley.edu/chempages/1-AMYL-1-NITROSOUREA.html + +$$$$ + + + + 0 0 0 0 0 0 0 0 0 0 1 V2000 +M END +> +20085 + +> +20085 + +> +86_CPDBAS_v5c + +> +no structure + +> +no structure + +> +Amylopectin sulfate + +> +9047-13-6 + +> +macromolecule + +> +non-linear polymer of glucose (Merck - amylopectic) + +> +InChI=1// + +> +MOSFIJXAXDLOML-UHFFFAOYAM + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +283 + +> +50 + +> +TD50 is harmonic mean of more than one positive test; TD50_Rat_mmol was not calculated for this mixture, but Activiity Score is assigned value of "50" to indicate active + +> +large intestine + +> +active + +> +active + +> +TD50_Rat_mmol and TD50_Mouse_mmol conversions from mg values not provided due substance being a mixture + +> +http://potency.berkeley.edu/chempages/AMYLOPECTIN%20SULFATE.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 0.6773 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1753 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6640 -2.3241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9921 -2.3241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6561 -1.1753 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9842 -1.1753 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6482 -2.3241 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9842 -3.4729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6561 -3.4729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9763 -2.3241 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6403 -3.4729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 10 1 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 1 0 0 0 0 +M END +> +20086 + +> +86 + +> +20086 + +> +87_CPDBAS_v5c + +> +C10H12O + +> +148.2017 + +> +defined organic + +> +parent + +> +representative isomer in mixture + +> +Anethole + +> +104-46-1 + +> +mixture or formulation + +> +mixture of Z [25679-28-1], E [4180-23-8] isomers, structure shown Z, stereochem + +> +1-(methyloxy)-4-[(1Z)-prop-1-en-1-yl]benzene + +> +CC=CC1=CC=C(C=C1)OC + +> +CC=CC1=CC=C(C=C1)OC + +> +InChI=1/C10H12O/c1-3-4-9-5-7-10(11-2)8-6-9/h3-8H,1-2H3/b4-3- + +> +RUVINXPYWBROJD-ARJAWSKDBC + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/ANETHOLE.html + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3316 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9934 -1.1561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3249 -1.1561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9867 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3183 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9801 -1.1561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3183 -2.3043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9867 -2.3043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3116 -1.1561 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9734 -2.3043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 10 1 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 1 0 0 0 0 +M END +> +20087 + +> +87 + +> +20087 + +> +88_CPDBAS_v5c + +> +C10H12O + +> +148.2017 + +> +defined organic + +> +parent + +> +tested chemical + +> +trans-Anethole + +> +4180-23-8 + +> +single chemical compound + +> +stereochem + +> +1-(methyloxy)-4-[(1E)-prop-1-en-1-yl]benzene + +> +C/C=C/C1=CC=C(C=C1)OC + +> +C/C=C/C1=CC=C(C=C1)OC + +> +InChI=1/C10H12O/c1-3-4-9-5-7-10(11-2)8-6-9/h3-8H,1-2H3/b4-3+ + +> +RUVINXPYWBROJD-ONEGZZNKBR + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/trans-ANETHOLE.html + +$$$$ + + + + 17 18 0 0 1 0 0 0 0 0 1 V2000 + 3.5180 -1.6894 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5813 -0.9143 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9254 -2.9615 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6745 -1.6894 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2571 -2.9615 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9962 -1.6894 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3403 -3.7465 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1403 -4.0347 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2559 -1.2820 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2522 -2.1863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9776 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.7689 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3937 -2.9615 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6658 -3.3788 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9378 -3.7962 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 9.0732 -2.1068 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 8.2484 -4.6310 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 1 0 0 0 + 1 3 1 0 0 0 0 + 1 9 1 0 0 0 0 + 2 4 1 0 0 0 0 + 3 5 1 0 0 0 0 + 3 8 1 1 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 6 0 0 0 + 5 7 1 6 0 0 0 + 6 13 1 0 0 0 0 + 7 13 1 0 0 0 0 + 9 10 1 0 0 0 0 + 9 11 1 1 0 0 0 + 10 12 1 0 0 0 0 + 13 14 1 6 0 0 0 + 14 15 1 0 0 0 0 + 14 16 1 0 0 0 0 + 14 17 1 0 0 0 0 +M END +> +20088 + +> +88 + +> +20088 + +> +89_CPDBAS_v5c + +> +C8H11Cl3O6 + +> +309.52834 + +> +defined organic + +> +parent + +> +tested chemical + +> +Anhydroglucochloral + +> +15879-93-3 + +> +single chemical compound + +> +Chlorlose-alpha, stereochem + +> +1,2-O-[(1R)-2,2,2-trichloroethylidene]-alpha-D-glucofuranose + +> +O[C@H]1[C@@H]([C@H](O)CO)O[C@H]2[C@@H]1O[C@@H]([C@@](Cl)(Cl)Cl)O2 + +> +O[C@H]1[C@@H]([C@H](O)CO)O[C@H]2[C@@H]1O[C@@H]([C@@](Cl)(Cl)Cl)O2 + +> +InChI=1/C8H11Cl3O6/c9-8(10,11)7-16-5-3(14)4(2(13)1-12)15-6(5)17-7/h2-7,12-14H,1H2/t2-,3+,4-,5-,6-,7-/m1/s1 + +> +OJYGBLRPYBAHRT-IPQSZEQABF + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +structure modified v5b + +> +http://potency.berkeley.edu/chempages/ANHYDROGLUCOCHLORAL.html + +$$$$ + + + + 16 17 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -3.9909 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1529 -3.3297 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1529 -1.9995 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3058 -1.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4587 -1.9995 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4587 -3.3297 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3058 -3.9909 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6036 -3.9909 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7565 -3.3297 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7565 -1.9995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9094 -1.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0623 -1.9995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0623 -3.3297 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9094 -3.9909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9094 -5.3211 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3058 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 16 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 14 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 +M END +> +20089 + +> +89 + +> +20089 + +> +90_CPDBAS_v5c + +> +C9H5Cl3N4 + +> +275.5218 + +> +defined organic + +> +parent + +> +tested chemical + +> +Anilazine + +> +101-05-3 + +> +single chemical compound + +> +4,6-dichloro-N-(2-chlorophenyl)-1,3,5-triazin-2-amine + +> +ClC1=NC(=NC(=N1)NC2=CC=CC=C2Cl)Cl + +> +ClC1=NC(=NC(=N1)NC2=CC=CC=C2Cl)Cl + +> +InChI=1/C9H5Cl3N4/c10-5-3-1-2-4-6(5)13-9-15-7(11)14-8(12)16-9/h1-4H,(H,13,14,15,16)/f/h13H + +> +IMHBYKMAHXWHRP-NDKGDYFDCD + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 104 + +> +http://potency.berkeley.edu/chempages/ANILAZINE.html + +$$$$ + + + + 7 7 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.1496 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3292 -1.1496 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9958 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9916 -1.1496 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3250 -2.3032 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9958 -2.3032 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 +M END +> +20090 + +> +90 + +> +20090 + +> +91_CPDBAS_v5c + +> +C6H7N + +> +93.1265 + +> +defined organic + +> +parent + +> +tested chemical + +> +Aniline + +> +62-53-3 + +> +single chemical compound + +> +aniline + +> +NC1=CC=CC=C1 + +> +NC1=CC=CC=C1 + +> +InChI=1/C6H7N/c7-6-4-2-1-3-5-6/h1-5H,7H2 + +> +PAYRUJLWNCNPSJ-UHFFFAOYAP + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/ANILINE.html + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.1525 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3279 -1.1525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9939 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3219 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9878 -1.1525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3219 -2.3050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9939 -2.3050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3279 -3.6329 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6599 -3.6329 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 +M END +> +20091 + +> +91 + +> +20091 + +> +92_CPDBAS_v5c + +> +C6H8ClN + +> +129.5874 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +Aniline.HCl + +> +142-04-1 + +> +single chemical compound + +> +parent [62-53-3] + +> +aniline hydrochloride + +> +NC1=CC=CC=C1[H]Cl + +> +NC1=CC=CC=C1 + +> +InChI=1/C6H7N.ClH/c7-6-4-2-1-3-5-6;/h1-5H,7H2;1H + +> +MMCPOSDMTGQNKG-UHFFFAOYAJ + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +269 + +> +2.07581909969642 + +> +22 + +> +TD50 is harmonic mean of more than one positive test; greater than ten-fold variation among TD50 values for positive results + +> +peritoneal cavity; spleen; vascular system + +> +peritoneal cavity + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +active + +> +active + +> +multisite active; multisex active + +> +TR 130 + +> +http://potency.berkeley.edu/chempages/ANILINE.HCl.html + +$$$$ + + + + 11 10 0 0 0 0 0 0 0 0 1 V2000 + 1.9960 -2.3024 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6614 -1.1536 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9921 -1.1536 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6574 -2.3024 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9921 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6614 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9960 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6653 -2.3024 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.5988 -4.7867 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.9247 -4.7867 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 6 1 0 0 0 0 + 1 8 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 8 9 1 0 0 0 0 + 10 11 1 0 0 0 0 +M END +> +20092 + +> +92 + +> +20092 + +> +93_CPDBAS_v5c + +> +C7H10ClNO + +> +159.6134 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +o-Anisidine.HCl + +> +134-29-2 + +> +single chemical compound + +> +parent [90-04-0] + +> +2-methoxyaniline hydrochloride + +> +C1(=C(C=CC=C1)N)OC.[H]Cl + +> +C1(=C(C=CC=C1)N)OC + +> +InChI=1/C7H9NO.ClH/c1-9-7-5-3-2-4-6(7)8;/h2-5H,8H2,1H3;1H + +> +XCZCWGVXRBJCCD-UHFFFAOYAX + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +29.7 + +> +0.186074602758916 + +> +33 + +> +TD50 is harmonic mean of more than one positive test + +> +kidney; thyroid gland; urinary bladder + +> +urinary bladder + +> +active + +> +966 + +> +6.0521234432698 + +> +19 + +> +TD50 is harmonic mean of more than one positive test + +> +urinary bladder + +> +urinary bladder + +> +active + +> +active + +> +active + +> +multisite active; multisex active; multispecies active + +> +TR 89 + +> +http://potency.berkeley.edu/chempages/o-ANISIDINE.HCl.html + +$$$$ + + + + 11 10 0 0 0 0 0 0 0 0 1 V2000 + 1.9927 -1.1489 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6569 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9913 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6555 -1.1489 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9839 -1.1489 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9913 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6569 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6642 -1.1489 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3936 -3.6322 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7220 -3.6322 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 7 1 0 0 0 0 + 1 8 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 10 11 1 0 0 0 0 +M END +> +20093 + +> +93 + +> +20093 + +> +94_CPDBAS_v5c + +> +C7H10ClNO + +> +159.6134 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +p-Anisidine.HCl + +> +20265-97-8 + +> +single chemical compound + +> +parent [104-94-9] + +> +4-(methyloxy)aniline hydrochloride + +> +C1(=CC=C(N)C=C1)OC.[H]Cl + +> +C1(=CC=C(N)C=C1)OC + +> +InChI=1/C7H9NO.ClH/c1-9-7-4-2-6(8)3-5-7;/h2-5H,8H2,1H3;1H + +> +VQYJLACQFYZHCO-UHFFFAOYAH + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 116 + +> +http://potency.berkeley.edu/chempages/p-ANISIDINE.HCl.html + +$$$$ + + + + 10 10 0 0 0 0 0 0 0 0 1 V2000 + 2.6582 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9971 -1.1499 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6582 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9971 -3.4542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6657 -3.4542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6657 -1.1499 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9896 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6553 -1.1499 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6553 -3.4542 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 2 0 0 0 0 + 8 10 1 0 0 0 0 +M END +> +20094 + +> +94 + +> +20094 + +> +95_CPDBAS_v5c + +> +C7H7NO2 + +> +137.136 + +> +defined organic + +> +parent + +> +tested chemical + +> +Anthranilic acid + +> +118-92-3 + +> +single chemical compound + +> +2-aminobenzoic acid + +> +NC1=C(C=CC=C1)C(=O)O + +> +NC1=C(C=CC=C1)C(=O)O + +> +InChI=1/C7H7NO2/c8-6-4-2-1-3-5(6)7(9)10/h1-4H,8H2,(H,9,10)/f/h9H + +> +RWZYAGGXGHYGMB-BGGKNDAXCO + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive; multispecies inactive + +> +TR 36 + +> +http://potency.berkeley.edu/chempages/ANTHRANILIC%20ACID.html + +$$$$ + + + + 16 18 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -4.6544 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1503 -3.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3006 -4.6544 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4576 -3.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6079 -4.6544 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6079 -5.9842 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4576 -6.6491 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3006 -5.9842 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4576 -2.6597 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6079 -1.9947 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3006 -1.9947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1503 -2.6597 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6649 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1503 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3006 -0.6649 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 12 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +20095 + +> +95 + +> +20095 + +> +96_CPDBAS_v5c + +> +C14H8O2 + +> +208.2121 + +> +defined organic + +> +parent + +> +tested chemical + +> +9,10-Anthraquinone + +> +84-65-1 + +> +single chemical compound + +> +9,10-anthraquinone + +> +O=C1C2=C(C=CC=C2)C(=O)C3=C1C=CC=C3 + +> +O=C1C2=C(C=CC=C2)C(=O)C3=C1C=CC=C3 + +> +InChI=1/C14H8O2/c15-13-9-5-1-2-6-10(9)14(16)12-8-4-3-7-11(12)13/h1-8H + +> +RZVHIXYEVGDQDX-UHFFFAOYAA + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +active + +> +0 + +> +no positive results + +> +no positive results + +> +no positive results + +> +inactive + +> +inactive + +> +inactive + +> +multisex inactive + +> +http://potency.berkeley.edu/chempages/9,10-ANTHRAQUINONE.html + +$$$$ + + + + 33 30 0 0 0 0 0 0 0 0 2 V2000 + 12.0104 -4.5373 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0 + 2.4492 -4.9297 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0 + 15.6998 -6.7352 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 14.6637 -7.5987 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 13.3920 -6.7352 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4779 -0.6908 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3004 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1543 -0.6908 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3079 -7.7086 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1461 -7.0178 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -7.7086 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 9.8281 -7.8813 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7994 -7.7086 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.0287 -3.2342 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4055 -4.4902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.7414 -3.2185 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3379 -5.2123 0.0000 Sb 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3175 -4.4431 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3018 -5.9816 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 4.7100 -7.2062 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3898 -5.9816 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9973 -7.2062 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9598 -3.2813 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2472 -3.2342 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5987 -4.5373 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.6868 -4.4588 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 8.5250 -5.1966 0.0000 Sb 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4574 -5.9659 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8656 -7.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.5612 -5.9659 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1530 -7.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.1107 -2.4649 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.6738 -2.1352 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 12 31 2 0 0 0 0 + 13 20 2 0 0 0 0 + 14 15 1 0 0 0 0 + 14 16 1 0 0 0 0 + 14 23 1 0 0 0 0 + 15 17 1 0 0 0 0 + 16 18 1 0 0 0 0 + 16 33 2 0 0 0 0 + 17 18 1 0 0 0 0 + 17 21 1 0 0 0 0 + 19 20 1 0 0 0 0 + 20 22 1 0 0 0 0 + 21 22 1 0 0 0 0 + 22 29 1 0 0 0 0 + 23 24 1 0 0 0 0 + 23 25 1 0 0 0 0 + 24 26 1 0 0 0 0 + 24 32 2 0 0 0 0 + 25 27 1 0 0 0 0 + 27 28 1 0 0 0 0 + 27 30 1 0 0 0 0 + 28 29 1 0 0 0 0 + 29 31 1 0 0 0 0 + 30 31 1 0 0 0 0 +M CHG 4 1 1 2 1 19 -1 26 -1 +M END +> +20096 + +> +96 + +> +39240 + +> +97_CPDBAS_v5c + +> +C8H10K2O15Sb2 + +> +667.8726 + +> +organometallic + +> +tested chemical + +> +Antimony potassium tartrate + +> +28300-74-5 + +> +single chemical compound + +> +dipotassium 5,11-dioxo-2,6,8,12,13,14-hexaoxa-1,7-distibatricyclo[8.2.1.1~4,7~]tetradecane-3,9-dicarboxylate trihydrate + +> +[K+].[K+].[O-]C(=O)C2O[Sb]3OC(C(O[Sb]1OC(=O)C2O1)C([O-])=O)C(=O)O3.O.O.O + +> +InChI=1/2C4H4O6.2K.3H2O.2Sb/c2*5-1(3(7)8)2(6)4(9)10;;;;;;;/h2*1-2H,(H,7,8)(H,9,10);;;3*1H2;;/q2*-2;2*+1;;;;2*+3/p-4/f2C4H2O6.2K.3H2O.2Sb/q2*-4;2m;;;;2m/rC8H6O12Sb2.2K.3H2O/c9-5(10)1-3-7(13)19-22(17-3)16-2(6(11)12)4-8(14)20-21(15-1)18-4;;;;;/h1-4H,(H,9,10)(H,11,12);;;3*1H2/q;2*+1;;;/p-2/fC8H4O12Sb2.2K.3H2O/q-2;2m;;; + +> +WBTCZEPSIIFINA-DYFLWLNICK + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +inactive + +> +0 + +> +no positive results + +> +inactive + +> +inactive + +> +http://potency.berkeley.edu/chempages/ANTIMONY%20POTASSIUM%20TARTRATE.html + +$$$$ + + + + 21 21 0 0 0 0 0 0 0 0 1 V2000 + 8.0682 -5.1439 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0682 -3.8092 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9285 -3.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7737 -3.8092 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6190 -3.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4642 -3.8092 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3095 -3.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3095 -1.8146 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4642 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6190 -1.8146 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1547 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.4799 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.8146 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.4949 -2.2945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2230 -3.1493 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3777 -3.8092 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3777 -5.1439 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5325 -3.1493 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6872 -3.8092 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.8420 -3.1493 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 14.9967 -3.8092 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 15 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 8 11 1 0 0 0 0 + 9 10 2 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 11 14 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 + 16 18 1 0 0 0 0 + 18 19 1 0 0 0 0 + 19 20 1 0 0 0 0 + 20 21 1 0 0 0 0 +M END +> +20097 + +> +97 + +> +20097 + +> +98_CPDBAS_v5c + +> +C15H23ClO4S + +> +334.8587 + +> +defined organic + +> +parent + +> +tested chemical + +> +Aramite + +> +140-57-8 + +> +single chemical compound + +> +2-chloroethyl 2-{[4-(1,1-dimethylethyl)phenyl]oxy}-1-methylethyl sulfite + +> +CC(COC1=CC=C(C=C1)C(C)(C)C)OS(=O)OCCCl + +> +CC(COC1=CC=C(C=C1)C(C)(C)C)OS(=O)OCCCl + +> +InChI=1/C15H23ClO4S/c1-12(20-21(17)19-10-9-16)11-18-14-7-5-13(6-8-14)15(2,3)4/h5-8,12H,9-11H2,1-4H3 + +> +YKFRAOGHWKADFJ-UHFFFAOYAL + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat; mouse + +> +96.7 + +> +0.288778520611828 + +> +31 + +> +TD50 is harmonic mean of more than one positive test + +> +liver + +> +active + +> +158 + +> +0.471840809272687 + +> +32 + +> +liver + +> +no positive results + +> +active + +> +active + +> +active + +> +multispecies active + +> +http://potency.berkeley.edu/chempages/ARAMITE.html + +$$$$ + + + + 13 12 0 0 0 0 0 0 0 0 1 V2000 + 4.6515 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3171 -1.1556 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6482 -1.1556 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3137 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6482 -3.4594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3171 -3.4594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3137 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3278 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6622 -3.4594 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3278 -4.6077 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6622 -1.1556 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3477 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3311 -2.3477 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 2 0 0 0 0 + 1 8 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 11 2 0 0 0 0 + 9 10 1 0 0 0 0 + 12 13 1 0 0 0 0 +M END +> +20098 + +> +98 + +> +20098 + +> +99_CPDBAS_v5c + +> +C8H14ClNO2 + +> +191.6571 + +> +defined organic + +> +complex HCl + +> +tested chemical + +> +Arecoline.HCl + +> +61-94-9 + +> +single chemical compound + +> +parent [63-75-2] + +> +methyl 1-methyl-1,2,5,6-tetrahydropyridine-3-carboxylate hydrochloride + +> +O=C(OC)C1=CCCN(C)C1.[H]Cl + +> +O=C(OC)C1=CCCN(C)C1 + +> +InChI=1/C8H13NO2.ClH/c1-9-5-3-4-7(6-9)8(10)11-2;/h4H,3,5-6H2,1-2H3;1H + +> +LQSWCSYIDIBGRR-UHFFFAOYAO + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +mouse + +> +39.5 + +> +0.206097243462413 + +> +36 + +> +TD50 is harmonic mean of more than one positive test + +> +lung; stomach; vascular system + +> +lung; vascular system + +> +active + +> +active + +> +active + +> +multisite active; multisex active + +> +http://potency.berkeley.edu/chempages/ARECOLINE.HCl.html + +$$$$ + + + + 26 28 0 0 0 0 0 0 0 0 2 V2000 + 4.6012 -5.3648 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9551 -4.2488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4264 -7.5675 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 4.6012 -3.1229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6530 -4.2488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9032 -3.1229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.5493 -4.2488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9551 -1.9971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9032 -5.3648 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0069 -3.1229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6530 -1.9971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0069 -5.3648 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3564 -0.7636 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1244 -7.5675 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 2.2516 -0.7636 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.0725 -8.6933 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3089 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8416 -4.2488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.7147 -5.3648 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.5258 -6.2361 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 6.5493 -1.9971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4975 -5.3648 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8416 -1.9971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.4975 -3.1229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.7897 -5.3648 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4949 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 9 2 0 0 0 0 + 2 4 2 0 0 0 0 + 2 5 1 0 0 0 0 + 3 14 1 0 0 0 0 + 3 16 2 0 0 0 0 + 4 8 1 0 0 0 0 + 4 6 1 0 0 0 0 + 5 10 2 0 0 0 0 + 5 12 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 21 1 0 0 0 0 + 7 9 1 0 0 0 0 + 7 18 1 0 0 0 0 + 8 13 1 0 0 0 0 + 8 11 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 15 1 0 0 0 0 + 12 19 2 0 0 0 0 + 12 20 1 0 0 0 0 + 13 17 1 0 0 0 0 + 15 17 1 0 0 0 0 + 18 22 1 0 0 0 0 + 18 24 2 0 0 0 0 + 21 23 2 0 0 0 0 + 22 25 1 0 0 0 0 + 23 24 1 0 0 0 0 +M CHG 4 3 1 14 -1 20 -1 26 1 +M END +> +20099 + +> +99 + +> +20099 + +> +100_CPDBAS_v5c + +> +C17H10NNaO7 + +> +363.2536 + +> +defined organic + +> +salt Na + +> +representative component in mixture + +> +Aristolochic acid, sodium salt (77% AA I, 21% AA II) + +> +10190-99-5 + +> +mixture or formulation + +> +structure shown AA I, parent [313-67-7]; AA II 6-Nitrophenanthro(3,4-d)-1,3-dioxole-5-carboxylic acid, sodium salt, AA II parent [475-80-9] + +> +sodium 8-(methyloxy)-6-nitrophenanthro[3,4-d][1,3]dioxole-5-carboxylate + +> +[O-][N+](C1=CC(C(OC)=CC=C4)=C4C2=C1C(C([O-])=O)=CC3=C2OCO3)=O.[Na+] + +> +[O-][N+](C1=CC(C(OC)=CC=C4)=C4C2=C1C(C(O)=O)=CC3=C2OCO3)=O + +> +InChI=1/C17H11NO7.Na/c1-23-12-4-2-3-8-9(12)5-11(18(21)22)14-10(17(19)20)6-13-16(15(8)14)25-7-24-13;/h2-6H,7H2,1H3,(H,19,20);/q;+1/p-1/fC17H10NO7.Na/q-1;m + +> +BQVOPWJSBBMGBR-KEMNOBITCY + +> +Carcinogenicity + +> +TD50; Tumor Target Sites + +> +rat + +> +active + +> +0.0141 + +> +50 + +> +TD50 is harmonic mean of more than one positive test; TD50_Rat_mmol was not calculated for this mixture, but Activiity Score is assigned value of "50" to indicate active + +> +stomach + +> +stomach + +> +active + +> +active + +> +active + +> +multisex active + +> +kidney and urinary bladder were additional target sites but experiments too short to meet the inclusion rules of the CPDB; Rat added v2a; Mutagenicity_SAL_CPDB added v3a; TD50_Rat_mmol conversion from mg value not provided due to substance being a mixture + +> +http://potency.berkeley.edu/chempages/ARISTOLOCHIC%20ACID,%20SODIUM%20SALT%20(77%25%20AA%20I,%2021%25%20AA%20I.html + +$$$$ diff --git a/data/hamster_carcinogenicity.sdf b/data/hamster_carcinogenicity.sdf new file mode 100644 index 0000000..df230d5 --- /dev/null +++ b/data/hamster_carcinogenicity.sdf @@ -0,0 +1,2805 @@ + + + + 3 2 0 0 0 0 0 0 0 0 1 V2000 + 2.3030 -0.6656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1515 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6656 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 17 19 0 0 0 0 0 0 0 0 1 V2000 + 5.7640 -1.7698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0213 -1.3540 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8046 -2.4275 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1296 -2.2921 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.6712 -1.0735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8878 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5629 -0.1451 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0213 -3.5106 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7640 -3.0948 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6035 -3.7621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4526 -3.0948 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4526 -1.7698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6035 -1.1025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3017 -3.7621 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1509 -3.0948 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.7621 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1509 -1.7698 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 9 1 0 0 0 0 + 1 13 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 14 1 0 0 0 0 + 12 13 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 15 17 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 18 19 0 0 0 0 0 0 0 0 2 V2000 + 3.2537 -3.5906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2537 -2.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4062 -1.5958 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4062 -4.2555 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1011 -4.2555 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9682 -0.2748 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6649 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1011 -1.5958 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8866 -2.1366 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7006 -3.5817 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0038 -3.8654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5587 -2.2607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6687 -2.7129 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7733 -1.7199 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5446 -5.0800 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 6.7644 -6.1527 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 8.8656 -5.2130 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 1 4 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 8 1 0 0 0 0 + 3 13 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 + 7 9 2 0 0 0 0 + 8 10 2 0 0 0 0 + 9 10 1 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 12 14 2 0 0 0 0 + 12 16 1 0 0 0 0 + 13 15 2 0 0 0 0 + 14 15 1 0 0 0 0 + 16 17 1 0 0 0 0 + 16 18 2 0 0 0 0 +M CHG 2 16 1 17 -1 +M END +> +active + +$$$$ + + + + 6 6 0 0 0 0 0 0 0 0 1 V2000 + 1.3304 -1.0738 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1104 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3767 -0.4086 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3767 -1.7390 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1104 -2.1509 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.0738 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 2 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 13 13 0 0 0 0 0 0 0 0 1 V2000 + 1.1541 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3012 -0.6703 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4553 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6094 -0.6703 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6094 -1.9972 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4553 -2.6606 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3012 -1.9972 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1541 -2.6606 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.4837 -1.5134 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.8175 -3.8147 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.3309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7566 -2.6606 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9107 -1.9972 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 12 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 10 1 0 0 0 0 + 8 11 1 0 0 0 0 + 12 13 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 3 0 0 0 0 0 0 0 0 0 2 V2000 + 10.0000 -0.0700 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0 + 4.5200 0.0000 0.0000 Cd 0 2 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.3400 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0 +M CHG 3 1 -1 2 2 3 -1 +M END +> +inactive + +$$$$ + + + + 6 4 0 0 0 0 0 0 0 0 2 V2000 + 2.6600 -2.6600 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 -1.3320 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3280 -1.3320 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 3.9880 -1.3320 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3320 0.0000 Cd 0 2 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 2 5 1 0 0 0 0 +M CHG 3 4 -1 5 -1 6 2 +M END +> +inactive + +$$$$ + + + + 0 0 0 0 0 0 0 0 0 0 1 V2000 +M END +> +inactive + +$$$$ + + + + 21 22 0 0 0 0 0 0 0 0 1 V2000 + 5.7698 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7698 -1.3315 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9111 -2.0036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9111 -3.3351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7698 -3.9945 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6158 -3.3351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6158 -2.0036 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4619 -3.9945 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3079 -3.3351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1540 -3.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1540 -5.3260 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.3351 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0650 -3.9945 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2190 -3.3351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2190 -2.0036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3730 -1.3315 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5269 -2.0036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5269 -3.3351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3730 -3.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3730 -5.3260 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6809 -3.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 13 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 10 12 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 2 0 0 0 0 + 14 19 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 + 17 18 1 0 0 0 0 + 18 19 2 0 0 0 0 + 18 21 1 0 0 0 0 + 19 20 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 3.4575 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3061 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 2.2415 -0.6520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1191 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3606 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2415 -2.0836 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 2 0 0 0 0 + 1 5 1 0 0 0 0 + 2 4 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 21 22 0 0 0 0 0 0 0 0 1 V2000 + 12.5806 -1.3138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.2668 -1.3138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9397 -1.3138 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3083 -2.4683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9945 -2.4683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.2574 -0.1592 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3177 -1.3138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9718 -1.3138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3177 -3.6229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9585 -3.6229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.2707 -2.4683 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2762 -2.4683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3403 -2.4683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9359 -2.4683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9906 -1.3138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9906 -3.6229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2989 -3.6229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2989 -1.3138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.4683 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 11.2668 -2.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.2668 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 2 0 0 0 0 + 1 11 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 20 1 0 0 0 0 + 2 21 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 8 2 0 0 0 0 + 4 5 1 0 0 0 0 + 4 10 1 0 0 0 0 + 5 7 1 0 0 0 0 + 5 9 2 0 0 0 0 + 7 15 2 0 0 0 0 + 8 18 1 0 0 0 0 + 9 16 1 0 0 0 0 + 10 17 2 0 0 0 0 + 12 14 1 0 0 0 0 + 13 16 2 0 0 0 0 + 13 19 1 0 0 0 0 + 13 15 1 0 0 0 0 + 14 17 1 0 0 0 0 + 14 18 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 11 12 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.6606 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1518 -1.9983 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3036 -2.6606 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4554 -1.9983 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4554 -0.6680 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6071 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7589 -0.6680 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7589 -1.9983 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6071 -2.6606 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3036 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1518 -0.6680 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 11 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 18 19 0 0 0 0 0 0 0 0 1 V2000 + 3.4540 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6054 -0.6632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6054 -1.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7567 -2.6527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9080 -1.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0594 -2.6527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0594 -3.9882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9080 -4.6514 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7567 -3.9882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2107 -4.6514 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4540 -2.6527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4540 -3.9882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3027 -4.6514 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 -3.9882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1513 -2.6527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3027 -1.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.6514 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7567 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 18 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 11 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 10 1 0 0 0 0 + 8 9 2 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 14 17 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 19 20 0 0 0 0 0 0 0 0 1 V2000 + 3.2800 -1.3268 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6068 -1.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6068 -2.6535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7585 -3.3169 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9102 -2.6535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0619 -3.3169 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0619 -4.6529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9102 -5.3162 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7585 -4.6529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2136 -5.3162 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4551 -3.3169 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4551 -4.6529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3034 -5.3162 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1517 -4.6529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1517 -3.3169 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3034 -2.6535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -5.3162 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6068 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9336 -1.3268 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 18 1 0 0 0 0 + 2 19 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 11 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 10 1 0 0 0 0 + 8 9 2 0 0 0 0 + 11 12 2 0 0 0 0 + 11 16 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 14 15 1 0 0 0 0 + 14 17 1 0 0 0 0 + 15 16 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 2.6588 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9976 -1.1548 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6588 -2.3049 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9976 -3.4597 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6588 -4.6098 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9905 -4.6098 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6563 -3.4597 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6659 -3.4597 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3049 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 8 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 19 23 0 0 0 0 0 0 0 0 1 V2000 + 1.2310 -2.6401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6401 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6007 -3.6931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2470 -2.9219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4113 -2.7068 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.7946 -3.9008 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1061 -5.0280 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3001 -3.6931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.8500 -2.0023 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3902 -3.1295 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6954 -3.7599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.3258 -2.7068 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4159 -2.4250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1478 -4.8203 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9749 -4.3235 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3902 -0.7787 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1318 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5522 -0.0742 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6583 -1.1643 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 1 0 0 0 0 + 1 4 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 7 1 0 0 0 0 + 5 9 1 0 0 0 0 + 5 8 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 + 8 10 1 0 0 0 0 + 9 12 1 0 0 0 0 + 9 16 1 0 0 0 0 + 9 19 1 0 0 0 0 + 10 11 1 0 0 0 0 + 10 16 1 0 0 0 0 + 10 15 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 14 1 0 0 0 0 + 12 13 1 0 0 0 0 + 16 17 1 0 0 0 0 + 16 18 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 6 5 0 0 0 0 0 0 0 0 1 V2000 + 1.3307 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9943 -1.1509 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3307 -2.3053 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9943 -3.4563 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3250 -1.1509 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 6 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 4 3 0 0 0 0 0 0 0 0 1 V2000 + 1.9950 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3292 -1.1518 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9950 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1518 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 8 5 0 0 0 0 0 0 0 0 1 V2000 + 2.7482 -0.6668 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.0518 -0.6668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.5964 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6623 -1.9955 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9909 -1.9955 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9955 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3286 -1.9955 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 4 1 0 0 0 0 + 2 3 1 0 0 0 0 + 5 6 1 0 0 0 0 + 7 8 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 3 2 0 0 0 0 0 0 0 0 1 V2000 + 2.3030 -0.6656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1515 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6656 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 11 10 0 0 0 0 0 0 0 0 1 V2000 + 2.2999 -3.9852 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2999 -2.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1534 -1.9891 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1534 -0.6630 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6591 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.9852 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4534 -1.9891 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6068 -2.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7533 -1.9891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9067 -2.6591 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 8 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 12 11 0 0 0 0 0 0 0 0 1 V2000 + 2.3006 -3.9862 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3006 -2.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1537 -1.9897 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1537 -0.6632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6598 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.9862 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4543 -1.9897 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6080 -2.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7548 -1.9897 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7548 -0.6632 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9086 -2.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 8 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 6 7 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 10 12 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 2 1 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 17 18 0 0 0 0 0 0 0 0 2 V2000 + 11.3714 -1.9900 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 10.2229 -1.3304 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 10.2229 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.0743 -1.9900 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.9265 -3.3204 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6302 -3.5933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9706 -2.4448 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8576 -1.4555 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6402 -2.3084 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.7532 -3.2863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5365 -2.7519 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 3.6729 -1.4328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.9807 -1.1485 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6950 -0.5345 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.4442 -1.0121 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.2395 -2.3311 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.8087 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 8 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 13 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 12 14 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 +M CHG 2 1 -1 2 1 +M END +> +active + +$$$$ + + + + 7 7 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.5998 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1503 -2.2653 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3050 -1.5998 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4416 -0.2777 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7417 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4072 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5169 -2.1419 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 5 5 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.1519 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1519 -1.8168 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3037 -1.1519 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.9687 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.6336 -1.1519 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 1 0 0 0 0 + 4 5 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 24 26 0 0 1 0 0 0 0 0 1 V2000 + 6.2320 -1.0924 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.8471 -2.3097 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6298 -2.7050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6298 -3.9743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.8471 -4.3593 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.5857 -3.3293 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2308 -2.2369 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5001 -2.2369 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.1347 -3.3293 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.4040 -3.3293 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5001 -4.4321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2308 -4.4321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.5857 -5.5453 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.0019 -0.9780 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9799 -0.1665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5374 -4.6090 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5374 -5.8783 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4241 -3.9743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3213 -4.6090 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.1316 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4241 -2.7050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5374 -2.0600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5374 -0.7907 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.6334 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 6 2 1 1 0 0 0 + 3 4 2 0 0 0 0 + 3 22 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 16 1 0 0 0 0 + 6 5 1 6 0 0 0 + 6 7 1 0 0 0 0 + 6 12 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 14 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 1 0 0 0 + 14 15 1 0 0 0 0 + 16 17 1 0 0 0 0 + 16 18 2 0 0 0 0 + 18 19 1 0 0 0 0 + 18 21 1 0 0 0 0 + 19 20 1 0 0 0 0 + 21 22 2 0 0 0 0 + 22 23 1 0 0 0 0 + 23 24 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 12 12 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.3036 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 -2.3036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9950 -1.1491 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3250 -1.1491 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9901 -2.3036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3250 -3.4581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9950 -3.4581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 -4.6072 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9901 -4.6072 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3201 -2.3036 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9901 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 11 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 9 1 0 0 0 0 + 7 8 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 2 1 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 7 5 0 0 0 0 0 0 0 0 1 V2000 + 3.9900 -2.6600 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9900 -1.3300 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 -1.3300 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3200 -1.3300 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9900 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3300 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3300 -1.3300 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 2 0 0 0 0 + 2 5 1 0 0 0 0 + 6 7 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 18 20 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.3030 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3313 -2.3030 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9920 -3.4593 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9920 -1.1564 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3313 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3233 -1.1564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9938 -2.3030 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3251 -2.3030 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9858 -1.1564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3251 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9938 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2880 -1.4284 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.3666 -0.6511 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.5812 -1.1952 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.7173 -2.5168 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6387 -3.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4240 -2.7500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2093 -3.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 18 1 0 0 0 0 + 9 10 1 0 0 0 0 + 9 12 1 0 0 0 0 + 10 11 2 0 0 0 0 + 12 13 2 0 0 0 0 + 12 17 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 2 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 + 17 18 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -0.6638 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1525 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3050 -0.6638 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4575 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6099 -0.6638 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 10 10 0 0 0 0 0 0 0 0 1 V2000 + 4.6545 -3.4536 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9889 -2.3040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6577 -2.3040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9968 -3.4536 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6656 -3.4536 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3040 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6656 -1.1497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9968 -1.1497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6545 -1.1497 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9889 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 9 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 9 10 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 9 9 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.3037 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6655 -1.1542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9965 -1.1542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6574 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9884 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6539 -1.1542 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9884 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6574 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 14 14 0 0 0 0 0 0 0 0 1 V2000 + 3.4524 -0.6629 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4524 -1.9978 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6031 -2.6606 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7539 -1.9978 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7539 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9047 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0555 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0555 -1.9978 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9047 -2.6606 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2063 -2.6606 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3016 -2.6606 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1508 -1.9978 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6606 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1508 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 11 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 10 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 12 14 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 13 13 0 0 0 0 0 0 0 0 1 V2000 + 3.4601 -0.6694 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4601 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6054 -2.6616 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7587 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7587 -0.6694 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9121 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0654 -0.6694 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0654 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9121 -2.6616 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3067 -2.6616 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1534 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6616 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1534 -0.6694 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 10 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 15 6 0 0 0 0 0 0 0 0 3 V2000 + 5.7806 -4.7517 0.0000 Pb 0 2 0 0 0 2 0 0 0 0 0 0 + 5.1849 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 4.5351 -1.1507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1849 -2.3014 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1949 -1.1507 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0036 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.3267 -1.1507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.0036 -2.3014 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1507 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6759 -4.9413 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 5.8754 -5.6452 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 11.4935 -1.8817 0.0000 Pb 0 2 0 0 0 2 0 0 0 0 0 0 + 13.5377 -1.9900 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 11.7778 -2.7075 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 3.6281 -3.4792 0.0000 Pb 0 2 0 0 0 2 0 0 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 9 2 0 0 0 0 +M CHG 8 1 2 2 -1 6 -1 10 -1 11 -1 12 2 13 -1 14 -1 +M CHG 1 15 2 +M END +> +inactive + +$$$$ + + + + 20 20 0 0 0 0 0 0 0 0 1 V2000 + 4.4090 -3.9937 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5672 -4.6567 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7174 -3.9937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8676 -4.6567 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.8676 -5.9906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.7174 -6.6535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5672 -5.9906 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2589 -4.6567 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1087 -3.9937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8946 -4.5368 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.5464 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6630 -2.3962 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9649 -2.6678 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4090 -2.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2589 -1.9969 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2589 -0.6630 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1087 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4090 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3307 -7.9874 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6567 -7.9874 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 8 1 0 0 0 0 + 1 14 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 7 2 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 13 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 1 0 0 0 0 + 16 18 1 0 0 0 0 + 19 20 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 33 35 0 0 1 0 0 0 0 0 1 V2000 + 14.9725 -5.3302 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 13.8197 -5.9890 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6668 -5.3302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5139 -5.9890 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5139 -7.3216 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6668 -7.9804 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 13.8197 -7.3216 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6668 -9.3129 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3610 -5.3302 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3610 -3.9977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5139 -3.3239 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 12.6668 -3.9977 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 11.5139 -1.9913 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3610 -1.3326 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2081 -1.9913 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2081 -3.3239 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0552 -3.9977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9173 -3.3239 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9173 -1.9913 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0552 -1.3326 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -3.9977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6115 -3.3239 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -5.3302 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6115 -5.9890 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4587 -5.3302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3058 -5.9890 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1529 -5.3302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1529 -3.9977 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -5.9890 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6115 -7.3216 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4587 -7.9804 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -7.9804 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3610 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 8 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 11 13 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 1 0 0 0 0 + 14 33 1 0 0 0 0 + 15 16 2 0 0 0 0 + 15 20 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 2 0 0 0 0 + 18 19 1 0 0 0 0 + 18 21 1 0 0 0 0 + 19 20 2 0 0 0 0 + 21 22 2 0 0 0 0 + 21 23 1 0 0 0 0 + 24 23 1 6 0 0 0 + 24 25 1 0 0 0 0 + 24 30 1 0 0 0 0 + 25 26 1 0 0 0 0 + 26 27 1 0 0 0 0 + 27 28 2 0 0 0 0 + 27 29 1 0 0 0 0 + 30 31 2 0 0 0 0 + 30 32 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 2.3056 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 -1.3308 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4567 -1.9945 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1511 -1.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3308 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 7 6 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.3052 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3306 -2.3052 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9941 -1.1508 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3247 -1.1508 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3306 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9941 -3.4560 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3247 -3.4560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 6 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 5 1 0 0 0 0 + 6 7 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 3 2 0 0 0 0 0 0 0 0 1 V2000 + 2.3030 -0.6656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1515 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6656 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 15 15 0 0 0 0 0 0 0 0 1 V2000 + 3.4524 -3.9915 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4524 -2.6644 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3016 -2.0009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1508 -2.6644 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.0009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1508 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3016 -0.6635 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6032 -2.0009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7643 -2.6644 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9151 -2.0009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0659 -2.6644 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2167 -2.0009 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3675 -2.6644 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0659 -3.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 9 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 12 15 1 0 0 0 0 + 13 14 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 9 9 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3315 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9950 -1.1518 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3265 -1.1518 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9899 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9899 -2.3037 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3265 -3.4555 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9899 -4.6073 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9950 -3.4555 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 9 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 9 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 23 25 0 0 0 0 0 0 0 0 1 V2000 + 1.6416 -5.7565 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2982 -4.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1491 -3.9398 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.6074 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1491 -2.6156 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.9658 -3.4583 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3010 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.9576 -2.2982 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2928 -2.2982 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9604 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2928 -4.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.9576 -4.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.2846 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.9522 -4.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.2764 -4.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.9440 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.2764 -2.2982 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.9522 -2.2982 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.2846 -1.1491 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.9522 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.2764 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.9440 -1.1491 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4583 -5.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 6 1 0 0 0 0 + 2 23 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 12 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 10 13 1 0 0 0 0 + 11 12 2 0 0 0 0 + 13 14 1 0 0 0 0 + 13 18 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 2 0 0 0 0 + 17 22 1 0 0 0 0 + 18 19 1 0 0 0 0 + 19 20 2 0 0 0 0 + 20 21 1 0 0 0 0 + 21 22 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 4 2 0 0 0 0 0 0 0 0 2 V2000 + 2.3030 -0.6656 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1515 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6656 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.1975 -1.9944 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 +M CHG 2 3 -1 4 1 +M END +> +inactive + +$$$$ + + + + 17 18 0 0 0 0 0 0 0 0 2 V2000 + 1.2652 -1.2985 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.7091 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1.5426 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2529 -2.1863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5514 -1.9089 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2173 -3.0631 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3294 -4.0508 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1086 -3.5070 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5380 -3.1963 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.4258 -2.2085 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 7.6466 -2.7523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.5023 -4.0730 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 6.2039 -4.3505 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.8008 -2.0865 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9439 -2.7523 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9439 -4.0841 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 11.0981 -2.0865 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 3 2 0 0 0 0 + 1 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 8 2 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 9 1 0 0 0 0 + 7 8 1 0 0 0 0 + 9 10 1 0 0 0 0 + 9 13 2 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 11 14 1 0 0 0 0 + 12 13 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 + 15 17 1 0 0 0 0 +M CHG 2 1 1 2 -1 +M END +> +active + +$$$$ + + + + 16 17 0 0 0 0 0 0 0 0 2 V2000 + 10.9589 -1.9945 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 9.8082 -1.3260 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 9.8082 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6575 -1.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.5151 -3.3205 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.2110 -3.5945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.5534 -2.4438 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.4411 -1.4575 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2274 -2.3014 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.3397 -3.2877 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1233 -2.7507 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 3.2658 -1.4247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.5589 -1.1507 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2795 -0.5370 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0301 -1.0192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.1753 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 8 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 7 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 9 13 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 12 14 1 0 0 0 0 + 14 15 1 0 0 0 0 + 15 16 2 0 0 0 0 +M CHG 2 1 -1 2 1 +M END +> +active + +$$$$ + + + + 15 17 0 0 0 0 0 0 0 0 2 V2000 + 4.2842 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2842 -1.3283 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 3.1294 -1.9925 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9805 -1.3283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8257 -1.9925 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.8257 -3.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9805 -3.9910 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1294 -3.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2842 -3.9910 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2842 -5.3193 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.1294 -5.9835 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9805 -5.3193 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6642 -5.5168 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.3620 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.4330 -1.9925 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 15 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 6 14 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 12 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 1 0 0 0 0 +M CHG 2 2 1 15 -1 +M END +> +inactive + +$$$$ + + + + 12 11 0 0 0 0 0 0 0 0 1 V2000 + 3.3277 -1.1482 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9859 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3169 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9825 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3135 -1.1482 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9825 -3.4520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9966 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3311 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9966 -3.4520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9859 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3169 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 1 0 0 0 0 + 1 11 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 10 1 0 0 0 0 + 11 12 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 12 11 0 0 0 0 0 0 0 0 1 V2000 + 3.3277 -1.1482 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9859 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3169 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9825 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3135 -1.1482 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9825 -3.4520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9966 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3311 -2.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9966 -3.4520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3038 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9859 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3169 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 1 0 0 0 0 + 1 11 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 10 2 0 0 0 0 + 11 12 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 11 10 0 0 0 0 0 0 0 0 1 V2000 + 3.9901 -2.3031 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3261 -1.1486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9921 -1.1486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3280 -2.3031 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3031 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3280 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3182 -2.3031 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9822 -1.1486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3182 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3261 -3.4517 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9921 -3.4517 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 1 0 0 0 0 + 1 10 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 10 11 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 10 9 0 0 0 0 0 0 0 0 1 V2000 + 1.9973 -3.4592 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 -2.3046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9973 -1.1546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6658 -1.1546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 -4.6091 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9899 -4.6091 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6557 -3.4592 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6658 -3.4592 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3046 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 1 9 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 9 10 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 3.3269 -3.4585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9925 -3.4585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3283 -2.3037 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9925 -1.1548 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3269 -1.1548 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -2.3037 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3194 -2.3037 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9835 -1.1548 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3283 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3283 -4.6073 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 11 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 10 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 10 9 0 0 0 0 0 0 0 0 1 V2000 + 1.9973 -3.4592 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 -2.3046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9973 -1.1546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6658 -1.1546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6584 -4.6091 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9899 -4.6091 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6557 -3.4592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6658 -3.4592 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3046 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 1 9 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 9 10 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 2.3046 -1.9992 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4569 -2.6618 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6092 -1.9992 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6092 -0.6683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4569 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7615 -2.6618 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3046 -0.6683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1523 -2.6618 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9992 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 1 0 0 0 0 + 1 8 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 1 0 0 0 0 + 8 9 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 8 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6654 -1.1540 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9962 -1.1540 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6569 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9877 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6531 -1.1540 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9877 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6569 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 13 14 0 0 0 0 0 0 0 0 1 V2000 + 2.2670 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5961 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.2606 -1.1490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5961 -2.3042 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2670 -2.3042 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.5962 -1.1490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.5962 -3.4532 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1427 -4.6705 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4408 -4.9438 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8507 -6.2108 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1490 -5.5587 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.8941 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.2795 -3.5961 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 2 0 0 0 0 + 2 3 2 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 13 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 11 1 0 0 0 0 + 9 10 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 14 15 0 0 0 0 0 0 0 0 2 V2000 + 5.5085 -1.1540 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.1727 -2.3014 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.5085 -3.4554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1800 -3.4554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5091 -2.3014 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.1800 -1.1540 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 3.5091 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0 + 3.5091 -4.6027 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.0525 -5.8171 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.0662 -6.7095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9122 -6.0453 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1873 -4.7436 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3016 -3.7573 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.0324 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 4 8 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 12 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 +M CHG 2 6 1 7 -1 +M END +> +inactive + +$$$$ + + + + 8 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6654 -1.1540 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9962 -1.1540 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6569 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9877 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6531 -1.1540 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9877 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6569 -2.3033 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 7 7 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.5998 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1503 -2.2653 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3050 -1.5998 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4416 -0.2777 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7417 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4072 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.5169 -2.1419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 13 12 0 0 0 0 0 0 0 0 1 V2000 + 3.3259 -3.4535 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9879 -2.2970 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3259 -1.1485 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9939 -1.1485 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3320 -2.2970 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9939 -3.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.2970 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9879 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3199 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3199 -2.2970 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9818 -3.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3138 -3.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9758 -4.6020 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 10 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 7 2 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 10 9 0 0 0 0 0 0 0 0 1 V2000 + 2.3042 -1.9989 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3042 -0.6682 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1521 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1521 -2.6614 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9989 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 -2.6614 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6084 -1.9989 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7605 -2.6614 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6084 -0.6682 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 1 7 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 5 6 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 1 0 0 0 0 + 8 10 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 5.7578 -1.9999 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6046 -2.6612 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4595 -1.9999 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3063 -2.6612 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1532 -1.9999 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3306 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7578 -0.6693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9109 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0641 -0.6693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0641 -1.9999 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9109 -2.6612 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 2 0 0 0 0 + 1 11 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 17 18 0 0 0 0 0 0 0 0 1 V2000 + 2.3044 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3044 -1.3295 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4567 -1.9942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.7640 -2.2232 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6208 -1.2039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9281 -1.4329 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3860 -2.6885 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.5292 -3.7078 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2219 -3.4714 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4567 -3.3237 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6089 -3.9884 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3044 -3.9884 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1522 -3.3237 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.9884 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1522 -1.9942 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9146 -0.7460 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.2219 -0.5096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 15 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 10 1 0 0 0 0 + 3 16 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 9 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 10 11 2 0 0 0 0 + 10 12 1 0 0 0 0 + 12 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 13 15 1 0 0 0 0 + 16 17 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 17 19 0 0 0 0 0 0 0 0 1 V2000 + 5.7546 -2.6609 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9055 -1.9980 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9055 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7546 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6037 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6037 -1.9980 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4528 -2.6609 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3018 -1.9980 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1509 -2.6609 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9980 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1509 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3018 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0564 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2074 -0.6629 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2074 -1.9980 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0564 -2.6609 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 17 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 14 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 8 13 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 14 15 2 0 0 0 0 + 15 16 1 0 0 0 0 + 16 17 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 23 26 0 0 0 0 0 0 0 0 1 V2000 + 4.6025 -7.9798 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6025 -6.6499 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4579 -5.9889 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4579 -4.6589 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3053 -3.9899 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1526 -4.6589 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.9899 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.6599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1526 -1.9990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3053 -2.6599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1526 -5.9889 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3053 -6.6499 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6025 -3.9899 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7552 -4.6589 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7552 -5.9889 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9078 -3.9899 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0604 -4.6589 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9078 -2.6599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7552 -1.9990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7552 -0.6690 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9078 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0604 -0.6690 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0604 -1.9990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 15 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 13 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 10 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 2 0 0 0 0 + 11 12 1 0 0 0 0 + 13 14 1 0 0 0 0 + 14 15 1 0 0 0 0 + 14 16 1 0 0 0 0 + 16 17 2 0 0 0 0 + 16 18 1 0 0 0 0 + 18 19 1 0 0 0 0 + 18 23 1 0 0 0 0 + 19 20 1 0 0 0 0 + 20 21 1 0 0 0 0 + 21 22 1 0 0 0 0 + 22 23 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 11 11 0 0 0 0 0 0 0 0 1 V2000 + 1.9925 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6567 -1.1488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -1.1488 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6552 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9835 -2.3037 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9910 -3.4525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6567 -3.4525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6552 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6642 -2.3037 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.4525 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.1488 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 7 1 0 0 0 0 + 1 9 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 9 10 1 0 0 0 0 + 9 11 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 24 24 0 0 0 0 0 0 0 0 1 V2000 + 4.6016 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6016 -1.3369 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4512 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4512 -3.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3008 -3.9901 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1504 -3.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1504 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3008 -1.3369 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3008 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -3.9901 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6016 -3.9901 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7623 -3.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7623 -2.0002 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9127 -1.3369 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9127 -3.9901 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0631 -3.3268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2135 -3.9901 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2135 -5.3270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0631 -5.9903 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9127 -5.3270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3639 -5.9903 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3639 -3.3268 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.1819 -7.3169 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.8554 -7.3169 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 13 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 11 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 6 10 1 0 0 0 0 + 7 8 2 0 0 0 0 + 8 9 1 0 0 0 0 + 11 12 1 0 0 0 0 + 12 13 2 0 0 0 0 + 12 15 1 0 0 0 0 + 13 14 1 0 0 0 0 + 15 16 2 0 0 0 0 + 15 20 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 2 0 0 0 0 + 17 22 1 0 0 0 0 + 18 19 1 0 0 0 0 + 18 21 1 0 0 0 0 + 19 20 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 25 26 0 0 0 0 0 0 0 0 1 V2000 + 10.6420 -6.9191 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9717 -8.0683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6429 -8.0683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9845 -6.9191 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6429 -5.7580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9717 -5.7580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9845 -4.6088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6429 -3.4596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9845 -2.3104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6429 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9717 -1.1492 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6420 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6420 -2.3104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9717 -3.4596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 11.9708 -2.3104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6558 -4.6088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9854 -5.7580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6566 -5.7580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9863 -4.6088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6575 -4.6088 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6566 -3.4596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9854 -3.4596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6420 -9.2175 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.5609 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3288 -4.5609 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 23 1 0 0 0 0 + 3 4 2 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 5 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 16 2 0 0 0 0 + 8 9 2 0 0 0 0 + 8 14 1 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 11 12 1 0 0 0 0 + 11 13 1 0 0 0 0 + 13 14 2 0 0 0 0 + 13 15 1 0 0 0 0 + 16 17 1 0 0 0 0 + 16 22 1 0 0 0 0 + 17 18 2 0 0 0 0 + 18 19 1 0 0 0 0 + 19 20 2 0 0 0 0 + 19 21 1 0 0 0 0 + 21 22 2 0 0 0 0 + 24 25 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 24 25 0 0 0 0 0 0 0 0 1 V2000 + 7.9826 -4.6086 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6532 -3.4591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9826 -2.2990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6532 -1.1495 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9730 -1.1495 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6435 -2.2990 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9730 -3.4591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6435 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6532 -5.7581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9730 -5.7581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6435 -6.9076 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.9730 -8.0678 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.6532 -8.0678 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9826 -6.9076 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.6435 -9.2173 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.6522 -4.6086 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9923 -5.7581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6619 -5.7581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9913 -4.6086 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6619 -3.4591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9923 -3.4591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6609 -4.6086 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.5554 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3304 -4.5554 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 9 1 0 0 0 0 + 1 16 2 0 0 0 0 + 2 3 2 0 0 0 0 + 2 7 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 5 6 1 0 0 0 0 + 5 8 1 0 0 0 0 + 6 7 2 0 0 0 0 + 9 10 2 0 0 0 0 + 9 14 1 0 0 0 0 + 10 11 1 0 0 0 0 + 11 12 2 0 0 0 0 + 12 13 1 0 0 0 0 + 12 15 1 0 0 0 0 + 13 14 2 0 0 0 0 + 16 17 1 0 0 0 0 + 16 21 1 0 0 0 0 + 17 18 2 0 0 0 0 + 18 19 1 0 0 0 0 + 19 20 1 0 0 0 0 + 19 22 2 0 0 0 0 + 20 21 2 0 0 0 0 + 23 24 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 43 47 0 0 1 0 0 0 0 0 1 V2000 + 4.6024 -11.2995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6024 -9.9693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -9.3118 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9112 -9.9693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0580 -9.3118 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2048 -9.9693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2048 -11.2995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0580 -11.9723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9112 -11.2995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -11.9723 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3668 -11.9723 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0580 -7.9815 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -7.9815 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4556 -9.3118 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4556 -7.9815 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6024 -7.3088 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6024 -5.9785 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -5.3210 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -3.9908 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9112 -3.3180 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9112 -1.9877 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0580 -1.3303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2048 -1.9877 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3668 -1.3303 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 9.2048 -3.3180 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0580 -3.9908 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 10.3668 -3.9908 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 8.0580 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7644 -1.3303 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4556 -5.3210 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4556 -3.9908 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3088 -5.9785 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3088 -7.3088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1468 -7.9815 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1468 -5.3210 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4556 -11.9723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4556 -13.3026 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3088 -13.9600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1468 -13.3026 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -13.9600 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1468 -11.9723 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3088 -11.2995 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3088 -15.2903 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 1 10 1 0 0 0 0 + 1 36 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 14 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 13 2 0 0 0 0 + 4 5 1 0 0 0 0 + 4 9 2 0 0 0 0 + 5 6 2 0 0 0 0 + 5 12 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 7 11 1 0 0 0 0 + 8 9 1 0 0 0 0 + 9 10 1 0 0 0 0 + 15 14 1 1 0 0 0 + 15 16 1 0 0 0 0 + 15 33 1 0 0 0 0 + 16 17 1 0 0 0 0 + 17 18 1 1 0 0 0 + 17 30 1 0 0 0 0 + 18 19 1 0 0 0 0 + 20 19 1 1 0 0 0 + 20 21 1 0 0 0 0 + 20 26 1 0 0 0 0 + 21 22 1 0 0 0 0 + 21 29 1 6 0 0 0 + 22 23 1 0 0 0 0 + 22 28 1 6 0 0 0 + 23 24 1 1 0 0 0 + 23 25 1 0 0 0 0 + 25 26 1 0 0 0 0 + 25 27 1 6 0 0 0 + 30 31 1 6 0 0 0 + 30 32 1 0 0 0 0 + 32 33 1 0 0 0 0 + 32 35 1 1 0 0 0 + 33 34 1 6 0 0 0 + 36 37 2 0 0 0 0 + 36 42 1 0 0 0 0 + 37 38 1 0 0 0 0 + 38 39 2 0 0 0 0 + 38 43 1 0 0 0 0 + 39 40 1 0 0 0 0 + 39 41 1 0 0 0 0 + 41 42 2 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 5 4 0 0 0 0 0 0 0 0 1 V2000 + 3.4567 -1.9945 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 -1.3308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1511 -1.9945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3308 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3056 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 5 1 0 0 0 0 + 3 4 1 0 0 0 0 +M END +> +inactive + +$$$$ + + + + 6 5 0 0 0 0 0 0 0 0 1 V2000 + 4.6084 -1.9954 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4563 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3042 -1.9954 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1521 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9954 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 3 2 0 0 0 0 0 0 0 0 1 V2000 + 2.3030 -0.6656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1515 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -0.6656 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 13 12 0 0 0 0 0 0 0 0 2 V2000 + 0.0000 -1.1513 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3274 -1.1513 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0 + 2.6611 -1.1513 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3217 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6554 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3159 -1.1513 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6554 -2.3025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3217 -2.3025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6611 -6.2911 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6611 -4.9636 0.0000 B 0 5 0 0 0 0 0 0 0 0 0 0 + 1.3274 -4.9636 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6611 -3.6299 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9885 -4.9636 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 3 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 2 0 0 0 0 + 3 8 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 1 0 0 0 0 + 10 12 1 0 0 0 0 + 10 13 1 0 0 0 0 +M CHG 2 2 1 10 -1 +M END +> +inactive + +$$$$ + + + + 12 12 0 0 0 0 0 0 0 0 1 V2000 + 3.4560 -1.3271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6103 -1.9906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6103 -3.3247 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4560 -3.9882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3017 -3.3247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3017 -1.9906 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1543 -1.3271 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9906 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1543 -3.9882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7577 -3.9882 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9120 -3.3247 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4560 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 1 12 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 10 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 5 9 1 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 2 0 0 0 0 + 10 11 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 4.6053 -1.9954 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.4522 -1.3257 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2992 -1.9954 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1530 -1.3257 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.9954 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1530 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6053 -3.3210 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.7514 -1.3257 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 6.9045 -1.9954 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 7 1 0 0 0 0 + 1 8 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 4 6 1 0 0 0 0 + 8 9 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 10 10 0 0 0 0 0 0 0 0 1 V2000 + 0.6656 -1.1543 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9968 -1.1543 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6577 -2.3040 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9889 -2.3040 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6545 -1.1543 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9968 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6656 -3.4583 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3040 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -4.6079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 8 1 0 0 0 0 + 1 10 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 2 0 0 0 0 + 6 7 1 0 0 0 0 + 7 8 1 0 0 0 0 + 7 9 1 0 0 0 0 +M END +> +active + +$$$$ + + + + 9 9 0 0 0 0 0 0 0 0 1 V2000 + 2.1136 -0.3740 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3772 -0.7820 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3772 -2.1136 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.1136 -2.5272 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3316 -1.4506 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.4506 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4538 -2.8956 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.6665 -2.3572 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4538 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 9 2 0 0 0 0 + 3 4 1 0 0 0 0 + 3 7 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 7 8 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 9 8 0 0 0 0 0 0 0 0 1 V2000 + 0.0000 -1.1552 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.6644 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9932 -2.3044 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6576 -1.1552 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9932 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9924 -1.1552 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6568 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 4.6568 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9855 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 4 6 1 0 0 0 0 + 6 7 1 0 0 0 0 + 6 8 1 0 0 0 0 + 8 9 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 7 7 0 0 0 0 0 0 0 0 1 V2000 + 3.5169 -2.1419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.3050 -1.5998 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 2.4416 -0.2777 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.7417 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 4.4072 -1.1547 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.1503 -2.2653 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.5998 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 5 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 6 1 0 0 0 0 + 3 4 1 0 0 0 0 + 4 5 1 0 0 0 0 + 6 7 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 14 14 0 0 0 0 0 0 0 0 1 V2000 + 1.9935 -3.4527 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3316 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9935 -1.1482 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 3.3251 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9869 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.3186 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9804 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3120 -1.1482 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.9739 -2.3044 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 7.3120 -3.4527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 5.9804 -3.4527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.3316 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.3044 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 2 0 0 0 0 + 2 3 1 0 0 0 0 + 2 14 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 12 1 0 0 0 0 + 4 5 1 0 0 0 0 + 5 6 1 0 0 0 0 + 6 7 2 0 0 0 0 + 6 11 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 9 10 1 0 0 0 0 + 10 11 2 0 0 0 0 + 12 13 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 6 6 0 0 0 0 0 0 0 0 1 V2000 + 2.2694 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.2694 -1.3318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.9376 -1.3318 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -2.2694 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 0.3409 -3.5516 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 0.9376 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 1 6 1 0 0 0 0 + 2 3 1 0 0 0 0 + 3 4 1 0 0 0 0 + 3 6 1 0 0 0 0 + 4 5 2 0 0 0 0 +M END +> +active + +$$$$ + + + + 6 4 0 0 0 0 0 0 0 0 2 V2000 + 2.6600 -2.6600 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 -1.3320 0.0000 B 0 5 0 0 0 0 0 0 0 0 0 0 + 1.3280 -1.3320 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6600 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 3.9880 -1.3320 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0 + 0.0000 -1.3320 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 1 0 0 0 0 + 2 4 1 0 0 0 0 + 2 5 1 0 0 0 0 +M CHG 2 2 -1 6 1 +M END +> +inactive + diff --git a/dataset.rb b/dataset.rb index c10b7a1..077530b 100644 --- a/dataset.rb +++ b/dataset.rb @@ -68,12 +68,6 @@ class DatasetTest < Test::Unit::TestCase def test_sdf_with_multiple_features uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"], File.read("data/CPDBAS_v5c_1547_29Apr2008part.sdf") ,{:accept => "text/uri-list",:content_type => "chemical/x-mdl-sdfile", :subjectid => @@subjectid}).to_s.chomp assert_kind_of URI::HTTP, URI.parse(uri) - #puts uri - #uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"], File.read("/dataCPDBAS_v5c_1547_29Apr2008.sdf") ,{:accept => "text/uri-list",:content_type => "chemical/x-mdl-sdfile", :subjectid => @@subjectid}).to_s.chomp - #@dataset = OpenTox::Dataset.find uri, @@subjectid - ##@dataset = OpenTox::Dataset.new uri - #@dataset.load_all @@subjectid - #hamster_carc? end def test_rest_csv @@ -149,6 +143,16 @@ class DatasetTest < Test::Unit::TestCase end end + def test_sdf + @datasets.each do |uri,data| + @dataset = OpenTox::Dataset.new(uri) + @dataset.load_all @@subjectid + sdf = @dataset.to_sdf + size = sdf.lines.to_a.select{|i| i == "$$$$\n"}.size + assert_equal size, data[:nr_compounds] if data + end + end + def test_csv @datasets.each do |uri,data| @dataset = OpenTox::Dataset.new(uri) -- cgit v1.2.3 From ba29431bf666f21f6b02bbae38336741f7b30bc7 Mon Sep 17 00:00:00 2001 From: mr Date: Mon, 1 Aug 2011 23:53:34 +0200 Subject: add Error to end sleep loop --- toxcreate.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toxcreate.rb b/toxcreate.rb index 0853bf6..de9ab59 100644 --- a/toxcreate.rb +++ b/toxcreate.rb @@ -52,7 +52,7 @@ class ToxCreateTest < Test::Unit::TestCase click_on "Create model" assert first("h2").has_content? "hamster_carcinogenicity" time = 0 - while first(".model_status").has_no_content?("Completed") do + while (first(".model_status").has_no_content?("Completed") and first(".model_status").has_no_content?("Error")) do sleep 5 time +=5 end -- cgit v1.2.3 From 3c6b7de013fbbeaab60eb6d284c5f9fadcaad824 Mon Sep 17 00:00:00 2001 From: mr Date: Wed, 3 Aug 2011 18:19:05 +0200 Subject: deactivate test_clustering --- algorithm.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/algorithm.rb b/algorithm.rb index 3ff1304..6cecfca 100644 --- a/algorithm.rb +++ b/algorithm.rb @@ -76,7 +76,7 @@ class AlgorithmTest < Test::Unit::TestCase assert_in_delta OpenTox::Algorithm::Similarity.tanimoto(features_a, features_c, weights, params), 0.235749338271022, 0.000001 } end - +=begin def test_clustering # Parameters dataset_uri = @@classification_training_dataset.uri @@ -91,5 +91,5 @@ class AlgorithmTest < Test::Unit::TestCase assert_equal cluster_datasets.size, 2 end - +=end end -- cgit v1.2.3 From 2e4a92a797b1ba7de9f852b76497101c269a090e Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 4 Aug 2011 10:20:55 +0000 Subject: first line added to data/hamster_carcinogenicity_with_errors.csv --- data/hamster_carcinogenicity_with_errors.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/data/hamster_carcinogenicity_with_errors.csv b/data/hamster_carcinogenicity_with_errors.csv index 2537ac3..e4f97e5 100644 --- a/data/hamster_carcinogenicity_with_errors.csv +++ b/data/hamster_carcinogenicity_with_errors.csv @@ -1,3 +1,4 @@ +SMILES,Hamster Carcinogenicity CC=O,1 CC=O,1 C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,1 -- cgit v1.2.3