Snipe CLI Documentation¶
apply_operations(signatures, operations, logger)
¶
Apply the list of operations to the signatures in the specified order.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
signatures
|
List[SnipeSig]
|
List of SnipeSig instances. |
required |
operations
|
List[tuple]
|
List of operations to apply. |
required |
logger
|
Logger
|
Logger for logging messages. |
required |
Source code in src/snipe/cli/cli_ops.py
common(ctx, sig_files, sigs_from_file, reset_abundance, trim_singletons, min_abund, max_abund, trim_below_median, output_file, name, debug, force)
¶
Extract hashes that are common to all input signatures.
This command identifies hashes that are present in every input signature and creates a new signature containing only these common hashes. The abundance values from the first signature are retained.
Example:
snipe ops common sample1.sig.zip sample2.sig.zip sample3.sig.zip -o common_hashes.sig.zip
This command will
- Load
sample1.sig.zip
,sample2.sig.zip
, andsample3.sig.zip
. - Apply any specified operations.
- Identify hashes common to all signatures.
- Retain abundance values from
sample1.sig.zip
for these common hashes. - Export the resulting common hashes signature to
common_hashes.sig.zip
.
Source code in src/snipe/cli/cli_ops.py
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 |
|
common_options(func)
¶
Decorator to add common options to all ops subcommands.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
func
|
The Click command function to decorate. |
required |
Returns:
Type | Description |
---|---|
The decorated function with added options. |
Source code in src/snipe/cli/cli_ops.py
guided_merge(ctx, table, output_dir, reset_abundance, trim_singletons, min_abund, max_abund, trim_below_median, debug, force, cores)
¶
Guide signature merging by groups.
This command reads a table file (CSV or TSV) where each line contains a signature file path and an experiment name.
It groups signatures by experiment, applies specified operations, sums the signatures within each group,
and saves the merged signatures as {output_dir}/{experiment_name}.zip
.
Example:
snipe ops guided-merge --table mapping.tsv --output-dir merged_sigs --reset-abundance --force --cores 4
Example Table File (mapping.tsv
):
/path/to/sig1.zip exp1
/path/to/sig2.zip exp1
/path/to/sig3.zip exp2
/path/to/sig4.zip exp2
/path/to/sig5.zip exp3
Source code in src/snipe/cli/cli_ops.py
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 |
|
intersect(ctx, sig_files, sigs_from_file, reset_abundance, trim_singletons, min_abund, max_abund, trim_below_median, output_file, name, debug, force)
¶
Intersect multiple sigs and retain abundance of first one.
This command identifies hashes that are present in all input signatures and retains their abundance from the first signature.
Example:
snipe ops intersect sample1.sig.zip sample2.sig.zip -o intersection.sig.zip
This command will
- Load
sample1.sig.zip
andsample2.sig.zip
. - Apply any specified operations.
- Retain only hashes common to both signatures.
- Use the abundance values from
sample1.sig.zip
for the common hashes. - Export the resulting intersection to
intersection.sig.zip
.
Source code in src/snipe/cli/cli_ops.py
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
|
load_signatures(sig_paths, logger, allow_duplicates=False)
¶
Load SnipeSig signatures from the provided file paths.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sig_paths
|
List[str]
|
List of file paths to load signatures from. |
required |
logger
|
Logger
|
Logger for logging messages. |
required |
allow_duplicates
|
bool
|
Flag to allow loading duplicate signature files. |
False
|
Returns:
Type | Description |
---|---|
List[SnipeSig]
|
List[SnipeSig]: List of loaded SnipeSig instances. |
Raises:
Type | Description |
---|---|
SystemExit
|
If loading a signature fails. |
Source code in src/snipe/cli/cli_ops.py
ops()
¶
Perform operations on SnipeSig signatures.
Subcommands
sum
Merge multiple signatures by summing their abundances.intersect
Compute the intersection of multiple signatures.union
Compute the union of multiple signatures.subtract
Subtract one signature from another.common
Extract hashes common to all input signatures.
Use 'snipe ops
Source code in src/snipe/cli/cli_ops.py
parse_operation_order(ctx, **kwargs)
¶
Parse the order of operations based on the command line arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx
|
Click context. |
required | |
kwargs
|
Command options. |
{}
|
Returns:
Type | Description |
---|---|
List[tuple]: A list of tuples containing operation names and their corresponding values. |
Source code in src/snipe/cli/cli_ops.py
subtract(ctx, sig_files, sigs_from_file, reset_abundance, trim_singletons, min_abund, max_abund, trim_below_median, output_file, name, debug, force)
¶
Subtract one signature from another.
This command removes the hashes present in the second signature from the first signature. The resulting signature will contain only the hashes that are unique to the first signature.
Example:
snipe ops subtract sample1.sig.zip sample2.sig.zip -o subtracted.sig.zip
This command will
- Load
sample1.sig.zip
andsample2.sig.zip
. - Apply any specified operations.
- Subtract the hashes of
sample2.sig.zip
fromsample1.sig.zip
. - Export the resulting signature to
subtracted.sig.zip
.
Source code in src/snipe/cli/cli_ops.py
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
|
sum(ctx, sig_files, sigs_from_file, reset_abundance, trim_singletons, min_abund, max_abund, trim_below_median, output_file, name, debug, force)
¶
Merge multiple signatures by summing their abundances.
This command loads multiple signature files, applies specified operations (like resetting abundances), and then sums them to create a new signature where the abundance of each hash is the sum of its abundances across all input signatures.
Example:
snipe ops sum sample1.sig.zip sample2.sig.zip -o summed.sig.zip --reset-abundance
This command will
- Load
sample1.sig.zip
andsample2.sig.zip
. - Reset the abundance of each hash in both signatures to 1.
- Sum the signatures, resulting in
summed.sig.zip
where each hash has an abundance of 2.
Source code in src/snipe/cli/cli_ops.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
|
union(ctx, sig_files, sigs_from_file, reset_abundance, trim_singletons, min_abund, max_abund, trim_below_median, output_file, name, debug, force)
¶
Merge multiple signatures by taking the union of hashes.
This command combines multiple signatures, retaining all unique hashes from each. If a hash appears in multiple signatures, its abundance in the resulting signature is the sum of its abundances across all input signatures.
Example:
snipe ops union sample1.sig.zip sample2.sig.zip -o union.sig.zip
This command will
- Load
sample1.sig.zip
andsample2.sig.zip
. - Apply any specified operations.
- Combine the signatures, summing abundances for overlapping hashes.
- Export the resulting union signature to
union.sig.zip
.
Source code in src/snipe/cli/cli_ops.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 |
|
validate_sig_output(ctx, param, value)
¶
Validate that the output file has a supported extension.
Supported extensions: .zip, .sig
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx
|
Click context. |
required | |
param
|
Click parameter. |
required | |
value
|
str
|
The value passed to the parameter. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The validated output file path. |
Raises:
Type | Description |
---|---|
BadParameter
|
If the file extension is not supported. |
Source code in src/snipe/cli/cli_ops.py
validate_sig_path(ctx, param, value)
¶
Validate that the provided signature file path exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx
|
Click context. |
required | |
param
|
Click parameter. |
required | |
value
|
str
|
The value passed to the parameter. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The validated signature file path. |
Raises:
Type | Description |
---|---|
BadParameter
|
If the file does not exist. |