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: ezfastq/cli.py
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ def main(arglist=None):
24
24
prefix=args.prefix,
25
25
workdir=args.workdir,
26
26
subdir=args.subdir,
27
+
link=args.link,
27
28
verbose=args.verbose,
28
29
)
29
30
@@ -91,6 +92,12 @@ def get_parser():
91
92
default=0,
92
93
help="specify 1 to indicate that all samples are single-end, or 2 to indicate that all samples are paired-end; by default, read layout is inferred automatically on a per-sample basis",
93
94
)
95
+
parser.add_argument(
96
+
"-l",
97
+
"--link",
98
+
action="store_true",
99
+
help="symbolically link files rather than copying; only supported for gzip-compressed files",
0 commit comments