Difference between revisions of "Statistical Algorithms Importer: Pre-Installed Project FAQ"

From Gcube Wiki
Jump to: navigation, search
Line 12: Line 12:
 
To solve this problem you can use the "convert to unix" functionality provided by notepad++ for example, or look for this feature in your editor.
 
To solve this problem you can use the "convert to unix" functionality provided by notepad++ for example, or look for this feature in your editor.
  
== Input File Parameter ==
+
== How Use File Input ==
 +
:Add input file parameter in Pre-Installed project:
 +
[[Image:StatisticalAlgorithmsImporter_DiffBasic0.png|thumb|center|800px|DiffBasic, SAI]]
  
 +
:Bash script code in sample:
  
 +
<pre style="display:block;font-family:monospace;white-space:pre;margin:1em 0;">
 +
....
 +
 +
</pre>
 +
 +
:Bash code in sample:
 +
[[File:DiffBasic.zip|DiffBasic.zip]]
  
  
 
[[Category:Statistical Algorithms Importer]]
 
[[Category:Statistical Algorithms Importer]]

Revision as of 15:07, 20 October 2017

F.A.Q. of Statistical Algorithms Importer (SAI), here are common mistakes we have found in Pre-Installed Project.


Windows User

Warning, this type of project will be launched in Linux environment. So be careful, all script files need to have a compatible Linux encoding. For example one difference is that Windows uses \r\n, whereas Linux uses \n for line termination. Another example is that Windows support "Unicode" UTF-16LE, and each character is 2 or 4 bytes, whereas Linux uses UTF-8, and each character is between 1 and 4 bytes. Also be aware of the Cut and Paste operation done from Windows machines that can enter unwanted \r\n characters. To solve this problem you can use the "convert to unix" functionality provided by notepad++ for example, or look for this feature in your editor.

How Use File Input

Add input file parameter in Pre-Installed project:
DiffBasic, SAI
Bash script code in sample:
....

Bash code in sample:

File:DiffBasic.zip