Add option to the default config corresponding to the parsing of the

inputs
This commit is contained in:
2017-07-27 16:03:47 +02:00
parent 8781ecab1f
commit 3c6a05be54

View File

@ -27,9 +27,20 @@ default_config = { 'software' : "The OBITools",
'outputview' : None,
'skip' : 0,
'only' : None,
'fileformat' : None,
'skiperror' : True,
'qualityformat' : 'sanger',
'moltype' : 'nuc'
'qualityformat' : b'sanger',
'qualityoffset' : -1,
'noquality' : False,
'seqtype' : b'nuc',
"header" : False,
"sep" : None,
"quote" : [b"'",b'"'],
"dec" : b".",
"nastring" : b"NA",
"stripwhite" : True,
"blanklineskip" : True,
"commentchar" : b"#"
}
root_config_name='obi'