mintproject / mic

Model Insertion Checker
https://mic-cli.readthedocs.io/en/latest/
5 stars 3 forks source link

[mic v1] - step 2 Find parameters in the commands and write them in the MIC wrapper #145

Closed mosoriob closed 4 years ago

mosoriob commented 4 years ago

Is your feature request related to a problem? Please describe.

How we can detect the parameters in the command using regex

python hello.py --cows 1 --cat True --money 10000000

The command line in the MIC run file must be:

parameters:
     cows:
        default_value: 1
...
python hello.py --cows ${cows} --cat ${cat} --money ${money}

When MIC generates the MIC file using the reprozip configuration

It must parse the reprozip config

And obtain values.

issue-label-bot[bot] commented 4 years ago

Issue-Label Bot is automatically applying the label feature_request to this issue, with a confidence of 0.87. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

mosoriob commented 4 years ago
([^" \t\n]+|"[^"]*")