single-cell-genetics / vireo

Demultiplexing pooled scRNA-seq data with or without genotype reference
https://vireoSNP.readthedocs.io
Apache License 2.0
73 stars 27 forks source link

flag -v --version #73

Closed edgano closed 1 year ago

edgano commented 2 years ago

Would be possible to have a -v flag to capture the version of vireo from the command line?

Thanks in advance

huangyh09 commented 2 years ago

You can simply type vireo (without any argument), and then the version will show up.

Alternatively, you can check it in the Python environment:

import vireoSNP
print(vireoSNP.__version__)

Yuanhua