-
via `-p`/`--parameters` I can do e.g.
```
reana-client run --name recast-pmsssm-1234 --file reana-demo-atlas-recast/reana.yaml -parameter foo=bar
```
but sometimes workflows have nested parame…
-
I've got a transform to remove empty object spreads like `...{}`:
```
module.exports = {
default: function(file, api, options) {
const j = api.jscodeshift;
const ast = j(file.source);…
-
``` js
var recast = require('recast');
var ast = recast.parse([
'module.exports = function(/*opts*/) {',
'};'
].join('\n'));
recast.visit(ast, {
visitNode: function(path) {
this.traverse(p…
-
> In the README it would be helpful to note that this is the equivalent to
>
> ```
> snakemake --directory recast_helloworld/ --snakefile recast_helloworld/Snakefile --cores 1 --use-conda --conda-…
-
### What happened?
This is a real nitpick but I still wanted to check: Is there a specific reason the properties on `AccountAddressParam` and `Address` are typed differently?
If you take `line2` a…
-
When running the following code:
``` js
var recast = require('recast');
var ast = recast.parse(
'while (true) {\n' +
'\tx;\n' +
'}'
, {useTabs: true});
// Add one line inside WHILE loop
ast.p…
-
I am trying to train a multiclass classification model using the following command:
```
chemprop train \
--data-path $DATASET \
--task-type multiclass \
--output-dir $MODEL_DIR \
--num-workers…
-
Using recast 0.17.3:
```js
const recast = require('recast');
const ast = recast.parse('(/**/{foo} = 1)');
const assignmentExpressionText = recast.print(ast.program.body[0].expression).code;
con…
-
Following up on Issue #1, now that there is a Snakemake based workflow for the RECAST hello world example, we should additionally add a workflow and instructions to be able to run this workflow on REA…
-
```
This is a wish list item.
While the intention of Recast is to provide a number of utilities to do
your own mesh generation. I find the sample generation techniques are good
enough for my purposes…