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
Copy file name to clipboardExpand all lines: bin/fastq_dir_to_samplesheet.py
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,13 @@ def parse_args(args=None):
67
67
default=1,
68
68
help="After splitting FastQ file name by --sanitise_name_delimiter all elements before this index (1-based) will be joined to create final sample name.",
69
69
)
70
+
parser.add_argument(
71
+
"-re",
72
+
"--recursive",
73
+
dest="RECURSIVE",
74
+
action="store_true",
75
+
help="Whether or not to search for FastQ files recursively in <FASTQ_DIR>.",
0 commit comments