File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,10 @@ Create conda environment(only support python v3.8/v3.9)
14
14
15
15
``` bash
16
16
conda create -n gmscmapper python=3.8
17
+ conda activate gmscmapper
17
18
or
18
19
conda create -n gmscmapper python=3.9
20
+ conda activate gmscmapper
19
21
```
20
22
21
23
You will need the following dependencies:
Original file line number Diff line number Diff line change @@ -199,13 +199,13 @@ def expect_file(f):
199
199
sys .stderr .write ("GMSC-mapper Error:The first two columns of output should be `query` and `target`.\n " )
200
200
sys .exit (1 )
201
201
202
- if args .habitat :
202
+ if not args . nohabitat and args .habitat :
203
203
expect_file (args .habitat )
204
204
205
- if args .taxonomy :
205
+ if not args . notaxonomy and args .taxonomy :
206
206
expect_file (args .taxonomy )
207
207
208
- if args .quality :
208
+ if not args . noquality and args .quality :
209
209
expect_file (args .quality )
210
210
211
211
def create_db (arguments ):
You can’t perform that action at this time.
0 commit comments