bcgsc / mavis

Merging, Annotation, Validation, and Illustration of Structural variants
http://mavis.bcgsc.ca
GNU General Public License v3.0
72 stars 13 forks source link

Annotate sv caller outputs standalone #240

Closed MorganHow closed 3 years ago

MorganHow commented 3 years ago

I would like to be able to annotate the output of some of the SV callers without running the entire pipeline like taking the output vcf from pindel and just annotate it.

Is this currently possible as I couldn't find documentation supporting it.

Thanks!

creisle commented 3 years ago

Yup! that's possible. The validate and clustering steps are optional and can be omitted. You will still need to run the setup/convert/annotate steps however

pipeline options

You would be the 3rd configuration in the above settings. You can do this by using the --skip_stage cluster --skip_stage validate argument during the setup command

If you do not want the pairing or summary stages you can also run convert and then annotate individually. You can see options and help menus for any of the sub-stages via command line

mavis <subcommand> --help
MorganHow commented 3 years ago

Awesome I’ll have to give it a go! Thanks for the quick response