Skip to content

Commit b8e2175

Browse files
committed
update
1 parent 0e4b088 commit b8e2175

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ docker build -t catt .
7878
pip install -r requirements.txt
7979
```
8080
or manually install the requirements:
81-
* Biopython \>=1.71
82-
* pandas \>=0.23.1
83-
* cffi \>= 1.11.5
81+
* Biopython \>=1.71
82+
* pandas \>=0.23.1
83+
* cffi \>= 1.11.5
8484
8585
6. configure the bowtie2 path samtools path in `initialize.py` if they are not in environment variables
8686
```
@@ -127,9 +127,9 @@ option:
127127
For user install catt with docker:
128128
```Shell
129129
### For sam/bam format, single-end input:
130-
docker run -it --rm -v $PWD:/input catt /catt/catt.py [option] -f /input/inputFile -o outputName
130+
docker run -it --rm -v $PWD:/output catt /catt/catt.py [option] -f /output/inputFile -o outputName
131131
### For paired-end input:
132-
docker run -it --rm -v $PWD:/input catt /catt/catt.py [option] -1 /input/inputFile1 -2 input/inputFile2 -o outputName
132+
docker run -it --rm -v $PWD:/output catt /catt/catt.py [option] -1 /output/inputFile1 -2 output/inputFile2 -o outputName
133133
```
134134
Where `$PWD` is the path of folder contain your input data
135135

catt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ def prob(self, seq):
714714
output = output.sort_values('CF').sort_values('Probability', ascending=False)
715715
del output['CF']
716716

717-
output.to_csv("/input/"+args.prefix + '.CATT.csv')
717+
output.to_csv("/output/"+args.prefix + '.CATT.csv')
718718
if not args.debug:
719719
os.system("rm %s" % args.prefix + '.pre.annotated.fa')
720720

0 commit comments

Comments
 (0)