Me_architect builds matrix describing lexical units by co-occurrence of those units in syntactic relations. Result unit count doesn't include multi-word expressions.

Command line options:
--help			- printing help message with list of possible options
--cfg-file arg		- command for config file input
--dict-only		- makes application create only dictionary of given corpuses

Options in config file:
--corpus arg		- Path for poliqarp corpus
--corpus-info arg	- Description of corpus
--workdir arg		- Path for result matrix
--matrix-name arg	- Name of result matrix
--words-dict arg	- Dictionary with words and their flex classes for columns, format:
				 flex;word
--row-simple-words arg	- Lexical units built by single words, format:
                                 file_with_units|flex_class
--row-me arg		- Lexical units built by multiword expressions
--column-units arg	- Multiword units building columns, format:
                                 file_with_joskipi_operator|file_with_mulitowrds_expresions
--column-simple arg	- Single word units building columns, format: (1)
--filter-disamb arg	- If true only non-disambs will be filtered out
--operator-per-node arg	- Number of column operators computed at one time on each node, default
 				 value (-1) means each node will get the same amount of operators
pq-size			- Size of maximum length sentence from corpus to process

Options in config file neccessary for making dictionary:
--flex arg		- Flex class for dictionary
--min-tf		- Minimal tf to consider word in dictionary
--stoplist arg		- Files with words ommited in dictionary


(1) 
header line: flex;lemma;frequency
flex_class1;lemma1;anything else
flex_class2;lemma2;anything else
...

How to run parallel me_architect on grid with installed MPI:

mpirun -n arg1 --hostfile arg2 ./me_architect --cfg-file arg3

arg1	- Number of nodes, on which we will compute. 1 of nodes is master node, doing IDLE while
		 slaves compute	
arg2	- File with hostnames of available machines. Should be provided by administrator.
arg3	- Configuration file for me_architect


How to create dictionary using parallel me_architect (note, that it still requires MPI installed):

mpirun -n arg1 --hostfile arg2 ./me_architect --cfg-file arg3

arg1	- Number of nodes, on which we will compute. 1 of nodes is master node, doing IDLE while slaves compute. arg1=1 Will make dictionary in sequential way
arg2	- File with hostnames of available machines. Should be provided by administrator.
arg3	- Configuration file for me_architect
