You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**`-i`**| Input file in FASTA format. Can contain multiple entries. |
22
-
|**`-out_path`**| Directory where the predictions are saved. For each entry in the input file one file will be saved.|
23
-
|**`--gpu`**| Flag for turning on the GPU usage. Results in faster inference on large datasets.|
35
+
|**`-out_path`**| Directory where the predictions are saved. For each entry in the input file one file will be saved. Defaults to the current directory if not specified.|
36
+
|**`-n_cpu`**| Number of CPUs to use in the prediction. By the default all cores will be used.|
37
+
|**`--gpu`**| Flag for turning on the GPU usage. Allows faster inference on large datasets. Overrides **`-n_cpu`** option.|
38
+
|**`--plot`**| Turns on the additional visual output of the predictions for each entry in the input. Plot files are saved in the **`-out_path`** directory.|
39
+
|**`--dpi`**| DPI of the saved plots, active only with **`--plot`** option.|
24
40
41
+
In a rare case of `deepcoil` being not available in your `PATH` after installation please look in the `$HOME/.local/bin/` or other system specific `pip` directory.
25
42
26
-
#####Running DeepCoil within script:
43
+
#### Running DeepCoil within script:
27
44
28
45
```python
29
46
from deepcoil import DeepCoil
@@ -36,7 +53,12 @@ inp = {str(entry.id): str(entry.seq) for entry in SeqIO.parse('example/example.f
0 commit comments