jessieren / DeepVirFinder

Identifying viruses from metagenomic data by deep learning
Other
116 stars 32 forks source link

Make a versioned release #36

Open telatin opened 2 years ago

telatin commented 2 years ago

Hello there, thanks for this tool!

I was wondering if you plan to make a release, to make it easier to make analyses reproducible.

Best

EricDeveaud commented 1 year ago

would like a taggedrelease version to

jowodo commented 1 year ago

I would also highly appreciate at least a tag: Here is a possible way to create a tag on the command line with a specific commit as tag location:

git clone https://github.com/jessieren/DeepVirFinder
cd DeepVirFinder
git log --graph --oneline # chose commit to tag 
git checkout ddb4a94 # ddb4a94 is the chosen commit hash 
git tag v1.0 
git push origin --tags

See this stackoverflow answer for more info, where I got the most info from.