File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -78,9 +78,9 @@ docker build -t catt .
78
78
pip install -r requirements.txt
79
79
```
80
80
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
84
84
85
85
6. configure the bowtie2 path samtools path in `initialize.py` if they are not in environment variables
86
86
```
@@ -127,9 +127,9 @@ option:
127
127
For user install catt with docker:
128
128
``` Shell
129
129
# ## 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
131
131
# ## 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
133
133
```
134
134
Where ` $PWD ` is the path of folder contain your input data
135
135
Original file line number Diff line number Diff line change @@ -714,7 +714,7 @@ def prob(self, seq):
714
714
output = output .sort_values ('CF' ).sort_values ('Probability' , ascending = False )
715
715
del output ['CF' ]
716
716
717
- output .to_csv ("/input /" + args .prefix + '.CATT.csv' )
717
+ output .to_csv ("/output /" + args .prefix + '.CATT.csv' )
718
718
if not args .debug :
719
719
os .system ("rm %s" % args .prefix + '.pre.annotated.fa' )
720
720
You can’t perform that action at this time.
0 commit comments