Move not-recommended-to-edit config files into sub directory
This commit is contained in:
parent
8f86b54598
commit
2c339803a3
14 changed files with 91 additions and 61 deletions
|
@ -218,7 +218,10 @@ const ligationSamplesNarrow = [
|
|||
];
|
||||
|
||||
module.exports = async function getLigationData() {
|
||||
const ligToml = await fs.readFile(path.join(__dirname, "../../ligation-set.toml"), "utf8");
|
||||
const ligToml = await fs.readFile(
|
||||
path.join(__dirname, "../../params/ligation-set.toml"),
|
||||
"utf8"
|
||||
);
|
||||
const ligData = toml.parse(ligToml);
|
||||
|
||||
const ligationSets = buildLigationSet(ligData, comp => comp.buildup.join(","));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue