<% meth="transform_to_latex" %>

<div class="lvl1">

	<p> It is used to convert a table in TSV, CSV, etc. format into a table with the required syntax to be added to LaTeX.  </p>
	<h3> Basic example </h3>
		<p> We'll specify the table to convert with the -i flag and add the --latex flag for this binary to be used. </p>

		<%
			table_name = 'cluster_genes_dis_desagg_3cols'
			args = f"--latex -i tables/{table_name}"
		%>
		${show_n_exec(table_name, args, "cmdtabs")}

	<h3> Adding the backbone </h3>
		<p> If we want to get a more detailed backbone to fill the remaining fields, we can used the --whole or -w flag. </p>

		<%
			table_name = 'cluster_genes_dis_desagg_3cols'
			args = f"--latex -i tables/{table_name} --whole"
		%>
		${show_n_exec(table_name, args, "cmdtabs")}

</div>