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
Copy file name to clipboardExpand all lines: assets/Troubleshooting.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,3 +25,24 @@ The following package could not be installed
25
25
└─ libgcc-ng >=12 , which does not exist (perhaps a missing channel).
26
26
```
27
27
This issue could be fixed by adding channels "conda-forge" and "defaults" into umi_tools.yaml, which has also been updated in the latest version.
28
+
29
+
## "str' object has no attribute "name'
30
+
```bash
31
+
Traceback (most recent call last):
32
+
File "/cluster/home/arna/miniconda3/envs/MEDIPIPE/lib/python3.8/site-packages/snakemake/__init__py", line 699, in snakemake
33
+
success = workflow. execute(
34
+
File "/cluster/home/arna/miniconda/envs/MEDIPIPE/lib/python3.8/site-packages/snakemake/workflow.py", line 1056, in execute logger.run_info("\n" join(dag.statsO))
35
+
File "/cluster/home/arna/miniconda3/envs/MEDIPIPE/lib/python3.8/site-packages/snakemake/dag-py", line 2192, in stats yield tabulate(rows, headers="keys")
36
+
File "/cluster/home/arna/miniconda3/envs/MEDIPIPE/lib/python3.8/site-packages/tabulate/__init__.py", line 2048, in tabulate
37
+
list_of_lists, headers = _normalize_tabular_data
38
+
File "/cluster/home/arna/miniconda/envs/MEDIPIPE/lib/python3.8/site-packages/tabulate/__init__py", line 1471, in _normalize_tabular_data
39
+
rows = list(map(lambda r: r if _is_separating_line(r) else list(r), rows))
40
+
File "/cluster/home/arna/miniconda3/envs/MEDIPIPE/lib/python3.8/site-packages/tabulate/__init__-py", line 1471, in «lambda»
41
+
rows = list(map(lambda r: r if _is_separating line(r) else list(r), rows))
42
+
File "/cluster/home/arna/miniconda/envs/MEDIPIPE/lib/python3.8/site-packages/tabulate/__init__.py", line 107, in _is separating_line
43
+
(len (row) > 1 and row[0] = SEPARATING LINE)
44
+
File "/cluster/home/arna/miniconda3/envs/MEDIPIPE/lib/python3.8/site-packages/snakemake/rules.py", line 1127, in __eq-
45
+
return self.name = other.name and self.output = other.output
46
+
AttributeError: "str' object has no attribute "name'
47
+
```
48
+
This issure could be fix by "conda install tabulate=0.8.10", more details refer to snakemake issue [1892](https://github.com/snakemake/snakemake/issues/1892)
0 commit comments