Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
removing redundant :: import
Browse files Browse the repository at this point in the history
  • Loading branch information
renewiegandt authored Jul 16, 2018
1 parent 961742d commit 4548826
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions tests/testthat/test_mqparser.R
Original file line number Diff line number Diff line change
@@ -1,29 +1,25 @@
context("MaxQuant parser")

test_that("all needed input parameteres are given", {
expect_error(wilson::parse_MaxQuant(), "The proteinGroups file was not given")
expect_error(wilson::parse_MaxQuant(proteinGroups_in = "./path/path/"), "The summary file was not given")
expect_error(wilson::parse_MaxQuant(proteinGroups_in = "./path/path/", summary_in = "./path/path/"),
expect_error(parse_MaxQuant(), "The proteinGroups file was not given")
expect_error(parse_MaxQuant(proteinGroups_in = "./path/path/"), "The summary file was not given")
expect_error(parse_MaxQuant(proteinGroups_in = "./path/path/", summary_in = "./path/path/"),
"The output file was not given")
expect_error(wilson::parse_MaxQuant(proteinGroups_in = "./path/path/", summary_in = "./path/path/",
expect_error(parse_MaxQuant(proteinGroups_in = "./path/path/", summary_in = "./path/path/",
outfile = "./path/path/"), "The output_reduced file was not given")
})

test_that("mq_parser", {

expect_error(wilson::parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt",
summary_in = "summary_test_2.txt",
expect_error(parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt", summary_in = "summary_test_2.txt",
outfile = "./out", outfile_reduced = "./outres" ),
"wrong format on summary file: column \'Experiment\' misssing")
expect_true(wilson::parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt",
summary_in = "summary_test.txt",
expect_true(parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt", summary_in = "summary_test.txt",
outfile = "./out", outfile_reduced = "./outres", config = "success_config.json"))
expect_error(wilson::parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt",
summary_in = "summary_test.txt",
expect_error(parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt", summary_in = "summary_test.txt",
outfile = "./out", outfile_reduced = "./outres", config = "" ),
"Could not read config file")
expect_error(wilson::parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt",
summary_in = "summary_test.txt",
expect_error(parse_MaxQuant(proteinGroups_in = "proteinGroups_test.txt", summary_in = "summary_test.txt",
outfile = "./out", outfile_reduced = "./outres", config = "fail_config.json" ),
"reduced_list is missing in config file")
})

0 comments on commit 4548826

Please sign in to comment.