Skip to content

Commit f75f7cd

Browse files
jesper eisfeldtjesper eisfeldt
jesper eisfeldt
authored and
jesper eisfeldt
committed
modified: README.md
modified: setup.py modified: tiddit/__main__.py
1 parent 92ab8d7 commit f75f7cd

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

README.md

+3-13
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,13 @@ TIDDIT may be installed using bioconda:
4242
```
4343
conda install tiddit
4444
```
45-
46-
Next, you may run TIDDIT like this:
47-
```
48-
tiddit --help
49-
tiddit --sv
50-
tiddit --cov
51-
```
5245

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

58-
Type the following to run tiddit:
59-
```
60-
singularity exec TIDDIT.simg tiddit
61-
```
6252

6353
The SV module
6454
=============

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name = 'tiddit',
23-
version = '3.5.0',
23+
version = '3.5.1',
2424

2525
url = "https://github.com/SciLifeLab/TIDDIT",
2626
author = "Jesper Eisfeldt",

tiddit/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import tiddit.tiddit_contig_analysis as tiddit_contig_analysis
1818

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

0 commit comments

Comments
 (0)