Skip to content

Commit c6c0276

Browse files
authored
Update Troubleshooting.md
1 parent e387a88 commit c6c0276

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

assets/Troubleshooting.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,24 @@ The following package could not be installed
2525
└─ libgcc-ng >=12 , which does not exist (perhaps a missing channel).
2626
```
2727
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

Comments
 (0)