This module allow to import files in the workflow without the need to declare all the steps that has been used to create the files. This module can also be used to import files that are not related to the design file.
If the files to import use the Eoulsan naming convention, the data name and the data format of the file will be directly extrated from the filename. In the other cases, the extension of the file will be used to guess the data format and the filename without the file extension will be the data name.
Parameter | Type | Description | Default value |
---|---|---|---|
files | string | The pattern of the files to import (e.g. *.sam) | None |
Parameter | Type | Description | Default value |
---|---|---|---|
format | string | The format of the file(s) to import | Not set |
copy | boolean | If true, input data will be always copied, no symbolic link will be created | false |
<!-- Import SAM step --> <step id="mysamimportstep" skip="false"> <module>import</module> <parameters> <parameter> <name>files</name> <value>*.sam</value> </parameter> </parameters> </step>