Louis BECQUEY

typo in help message

...@@ -106,7 +106,7 @@ The detailed list of options is below: ...@@ -106,7 +106,7 @@ The detailed list of options is below:
106 106
107 Typical usage: 107 Typical usage:
108 ``` 108 ```
109 -nohup bash -c 'time ~/Projects/RNANet/RNAnet.py --3d-folder ~/Data/RNA/3D/ --seq-folder ~/Data/RNA/sequences' -s --archive & 109 +nohup bash -c 'time ~/Projects/RNANet/RNAnet.py --3d-folder ~/Data/RNA/3D/ --seq-folder ~/Data/RNA/sequences -s --archive' &
110 ``` 110 ```
111 111
112 ## Post-computation task: estimate quality 112 ## Post-computation task: estimate quality
......
...@@ -998,7 +998,7 @@ class Pipeline: ...@@ -998,7 +998,7 @@ class Pipeline:
998 print("--archive\t\t\tCreate a tar.gz archive of the datapoints text files, and update the link to the latest archive") 998 print("--archive\t\t\tCreate a tar.gz archive of the datapoints text files, and update the link to the latest archive")
999 print() 999 print()
1000 print("Typical usage:") 1000 print("Typical usage:")
1001 - print(f"nohup bash -c 'time {runDir}/RNAnet.py --3d-folder ~/Data/RNA/3D/ --seq-folder /Data/RNA/sequences' -s --archive &") 1001 + print(f"nohup bash -c 'time {runDir}/RNAnet.py --3d-folder ~/Data/RNA/3D/ --seq-folder ~/Data/RNA/sequences -s --archive' &")
1002 sys.exit() 1002 sys.exit()
1003 elif opt == '--version': 1003 elif opt == '--version':
1004 print("RNANet 1.0 alpha ") 1004 print("RNANet 1.0 alpha ")
......