Skip to content
Snippets Groups Projects
Commit d9a5d0a8 authored by Vermaat's avatar Vermaat
Browse files

Removed dead configuration options.

parent 2e68c7fa
No related branches found
No related tags found
No related merge requests found
......@@ -97,9 +97,6 @@ flankclipsize = 6
# These settings are used by the Scheduler module.
#
# Name of the batch process.
processName = "MutalyzerBatch2"
# Return e-mail address.
mailFrom = "noreply@humgen.nl"
......@@ -146,12 +143,6 @@ threshold = 0.05
# These settings are used by the GenRecord module.
#
# Number of upstream nucleotides when searching for a transcript.
upstream = 5000
# Number of downstream nucleotides when searching for a transcript.
downstream = 2000
spliceAlarm = 2
spliceWarn = 5
......@@ -111,7 +111,6 @@ class Config():
self.Mutator.flankclipsize = int(config["flankclipsize"])
# Set the variables needed by the Scheduler module.
self.Scheduler.processName = config["processName"]
self.Scheduler.mailFrom = config["mailFrom"]
self.Scheduler.mailSubject = config["mailSubject"]
self.Scheduler.resultsDir = config["resultsDir"]
......@@ -133,8 +132,6 @@ class Config():
self.GBparser.email = config["email"]
# Set the variables needed by the File module.
#self.File.upstream = int(config["upstream"])
#self.File.downstream = int(config["downstream"])
self.GenRecord.spliceAlarm = int(config["spliceAlarm"])
self.GenRecord.spliceWarn = int(config["spliceWarn"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment