-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove default config file to make all settings explicit (#287)
A default config file `nplinker_default.toml` was used automatically in NPLinker. However, it may lead to two problems: 1. The use of default settings cause confusions to users who might not be aware of them. 2. It requires users to be familiar with Dynaconf to config their own settings This PR removes the default config file and let users to config all settings in their config file `nplinker.toml`.
- Loading branch information
1 parent
cd15f1e
commit d9a4745
Showing
9 changed files
with
123 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
dynaconf_merge = true # merge with the default settings, provided by the Dynaconf library | ||
|
||
root_dir = "@format {env[NPLINKER_ROOT_DIR]}" | ||
mode = "local" | ||
|
||
[log] | ||
level = "DEBUG" | ||
use_console = true | ||
|
||
[mibig] | ||
to_use = true | ||
version = "3.1" | ||
|
||
[bigscape] | ||
version = 1 | ||
cutoff = "0.30" | ||
|
||
[scoring] | ||
methods = ["metcalf"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
dynaconf_merge = true # merge with the default settings, provided by the Dynaconf library | ||
|
||
root_dir = "@format {env[NPLINKER_ROOT_DIR]}" | ||
mode = "local" | ||
|
||
[log] | ||
level = "DEBUG" | ||
use_console = true | ||
|
||
[mibig] | ||
to_use = true | ||
version = "3.1" | ||
|
||
[bigscape] | ||
version = 1 | ||
cutoff = "0.30" | ||
|
||
[scoring] | ||
methods = ["metcalf"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters