You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add database operation tool to convert sample sheets to list collections
This tool converts sample sheet collections back to their corresponding
non-sample-sheet types by stripping the column_definitions and row
column metadata:
- sample_sheet -> list
- sample_sheet:paired -> list:paired
- sample_sheet:paired_or_unpaired -> list:paired_or_unpaired
- sample_sheet:record -> list:record
Useful when a sample sheet needs to be passed to a tool that expects
a regular list collection, or when discarding sample sheet metadata.
<paramtype="data_collection"collection_type="sample_sheet,sample_sheet:paired,sample_sheet:paired_or_unpaired,sample_sheet"name="input"label="Sample sheet to convert" />
17
+
</inputs>
18
+
<outputs>
19
+
<!-- type_source is a lie, we don't have a way to encode the transform that is actually happening -->
Converts a sample sheet collection back to its corresponding list collection type.
30
+
31
+
===========
32
+
Description
33
+
===========
34
+
35
+
This tool takes a sample sheet collection and produces a regular list collection, removing all sample sheet metadata (column definitions and row values).
Use this tool when you need to pass a sample sheet to a tool that expects a regular list collection, or when you want to discard the sample sheet metadata.
0 commit comments