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
@cli.option('--manifest_path', required=True, help='Path to the sample manifest. e.g. ~/fc/AVITI_run_manifest_2450545934_24-1214961_250722_154957_EunkyoungChoi_untrimmed.csv')
45
-
@cli.option('--project', multiple=True, required=False, help='Project ID, e.g. P10001. Only the indexes of samples with this specific project ID will be changed. Use multiple times for multiple projects.')
46
-
@cli.option('--swap', is_flag=True, help='Swaps index 1 and 2.')
47
-
@cli.option('--rc1', is_flag=True, help='Exchanges index 1 for its reverse compliment.')
48
-
@cli.option('--rc2', is_flag=True, help='Exchanges index 2 for its reverse compliment.')
49
-
@cli.option('--add_sample', multiple=True, help='Include additional sample(s). Use multiple times for multiple samples, or provide a file. Each new sample should have the same format as in the existing manifest. Example: --add_sample P12345,ATCG,CGTA,1,A__Project_25_16,301-10-10-301,ATCG-CGTA,')
50
48
49
+
@cli.command()
50
+
@cli.option(
51
+
"--manifest_path",
52
+
required=True,
53
+
help="Path to the sample manifest. e.g. ~/fc/AVITI_run_manifest_2450545934_24-1214961_250722_154957_EunkyoungChoi_untrimmed.csv",
54
+
)
55
+
@cli.option(
56
+
"--project",
57
+
multiple=True,
58
+
required=False,
59
+
help="Project ID, e.g. P10001. Only the indexes of samples with this specific project ID will be changed. Use multiple times for multiple projects.",
60
+
)
61
+
@cli.option("--swap", is_flag=True, help="Swaps index 1 and 2.")
62
+
@cli.option("--rc1", is_flag=True, help="Exchanges index 1 for its reverse compliment.")
63
+
@cli.option("--rc2", is_flag=True, help="Exchanges index 2 for its reverse compliment.")
64
+
@cli.option(
65
+
"--add_sample",
66
+
multiple=True,
67
+
help="Include additional sample(s). Use multiple times for multiple samples, or provide a file. Each new sample should have the same format as in the existing manifest. Example: --add_sample P12345,ATCG,CGTA,1,A__Project_25_16,301-10-10-301,ATCG-CGTA,",
0 commit comments