diff COBRAxy/docs/troubleshooting.md @ 547:73f2f7e2be17 draft

Uploaded
author francesco_lapi
date Tue, 28 Oct 2025 10:44:07 +0000
parents fcdbc81feb45
children
line wrap: on
line diff
--- a/COBRAxy/docs/troubleshooting.md	Mon Oct 27 12:33:08 2025 +0000
+++ b/COBRAxy/docs/troubleshooting.md	Tue Oct 28 10:44:07 2025 +0000
@@ -133,10 +133,9 @@
 # Use absolute paths
 from pathlib import Path
 
-tool_dir = str(Path('/path/to/COBRAxy').absolute())
 input_file = str(Path('expression.tsv').absolute())
 
-args = ['-td', tool_dir, '-in', input_file, ...]
+args = ['-in', input_file, ...]
 ```
 
 **Problem**: Permission denied
@@ -317,7 +316,7 @@
     f.write(test_data)
 
 # Test basic functionality
-ras_generator.main(['-td', tool_dir, '-in', 'test_input.tsv', 
+ras_generator.main(['-in', 'test_input.tsv', 
                    '-ra', 'test_output.tsv', '-rs', 'ENGRO2'])
 ```
 
@@ -362,12 +361,12 @@
 
 Before reporting issues:
 
-- ✅ Checked this troubleshooting guide
-- ✅ Verified installation completeness
-- ✅ Tested with built-in example data
-- ✅ Searched existing GitHub issues
-- ✅ Tried alternative models/parameters
-- ✅ Checked file formats and permissions
+- Checked this troubleshooting guide
+- Verified installation completeness
+- Tested with built-in example data
+- Searched existing GitHub issues
+- Tried alternative models/parameters
+- Checked file formats and permissions
 
 ## Prevention Tips