Skip to content

Commit

Permalink
modified: README.md
Browse files Browse the repository at this point in the history
	modified:   setup.py
	modified:   tiddit/__main__.py
  • Loading branch information
jesper eisfeldt authored and jesper eisfeldt committed Jan 25, 2023
1 parent 92ab8d7 commit f75f7cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,13 @@ TIDDIT may be installed using bioconda:
```
conda install tiddit
```

Next, you may run TIDDIT like this:
```
tiddit --help
tiddit --sv
tiddit --cov
```

TIDDIT is also distributed with a Docker container (http://singularity.lbl.gov/index.html). Type the following command to download the container:
or using the docker image on biocontainers
```
singularity pull --name TIDDIT.simg
docker pull quay.io/biocontainers/tiddit:<tag>
```
visit https://quay.io/repository/biocontainers/tiddit?tab=tags for tags.

Type the following to run tiddit:
```
singularity exec TIDDIT.simg tiddit
```

The SV module
=============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name = 'tiddit',
version = '3.5.0',
version = '3.5.1',

url = "https://github.com/SciLifeLab/TIDDIT",
author = "Jesper Eisfeldt",
Expand Down
2 changes: 1 addition & 1 deletion tiddit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import tiddit.tiddit_contig_analysis as tiddit_contig_analysis

def main():
version="3.5.0"
version="3.5.1"
parser = argparse.ArgumentParser("""tiddit-{}""".format(version),add_help=False)
parser.add_argument("--sv" , help="call structural variation", required=False, action="store_true")
parser.add_argument("--cov" , help="generate a coverage bed file", required=False, action="store_true")
Expand Down

0 comments on commit f75f7cd

Please sign in to comment.