view docs/scripts/html/JoinTextFiles.html @ 0:4816e4a8ae95 draft default tip

Uploaded
author deepakjadmin
date Wed, 20 Jan 2016 09:23:18 -0500
parents
children
line wrap: on
line source

<html>
<head>
<title>MayaChemTools:Documentation:JoinTextFiles.pl</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link rel="stylesheet" type="text/css" href="../../css/MayaChemTools.css">
</head>
<body leftmargin="20" rightmargin="20" topmargin="10" bottommargin="10">
<br/>
<center>
<a href="http://www.mayachemtools.org" title="MayaChemTools Home"><img src="../../images/MayaChemToolsLogo.gif" border="0" alt="MayaChemTools"></a>
</center>
<br/>
<div class="DocNav">
<table width="100%" border=0 cellpadding=0 cellspacing=2>
<tr align="left" valign="top"><td width="33%" align="left"><a href="./JoinSDFiles.html" title="JoinSDFiles.html">Previous</a>&nbsp;&nbsp;<a href="./index.html" title="Table of Contents">TOC</a>&nbsp;&nbsp;<a href="./MACCSKeysFingerprints.html" title="MACCSKeysFingerprints.html">Next</a></td><td width="34%" align="middle"><strong>JoinTextFiles.pl</strong></td><td width="33%" align="right"><a href="././code/JoinTextFiles.html" title="View source code">Code</a>&nbsp;|&nbsp;<a href="./../pdf/JoinTextFiles.pdf" title="PDF US Letter Size">PDF</a>&nbsp;|&nbsp;<a href="./../pdfgreen/JoinTextFiles.pdf" title="PDF US Letter Size with narrow margins: www.changethemargins.com">PDFGreen</a>&nbsp;|&nbsp;<a href="./../pdfa4/JoinTextFiles.pdf" title="PDF A4 Size">PDFA4</a>&nbsp;|&nbsp;<a href="./../pdfa4green/JoinTextFiles.pdf" title="PDF A4 Size with narrow margins: www.changethemargins.com">PDFA4Green</a></td></tr>
</table>
</div>
<p>
</p>
<h2>NAME</h2>
<p>JoinTextFiles.pl - Join multiple CSV or TSV text files into a single text file</p>
<p>
</p>
<h2>SYNOPSIS</h2>
<p>JoinTextFiles.pl TextFiles...</p>
<p>JoinTextFiles.pl  [<strong>-f, --fast</strong>] [<strong>-h, --help</strong>] [<strong>--indelim</strong> comma | semicolon]
[<strong>-l, --label</strong> yes | no] [<strong>-o, --overwrite</strong>] [<strong>--outdelim</strong> comma | tab | semicolon]
[<strong>-q, --quote</strong> yes | no] [<strong>-r, --root</strong> rootname] [<strong>-w, --workingdir</strong> dirname] TextFiles...</p>
<p>
</p>
<h2>DESCRIPTION</h2>
<p>Multiple CSV or TSV <em>TextFiles</em> are joined to generate a single text file. The
file names are separated by spaces. The valid file extensions are <em>.csv</em> and <em>.tsv</em>
for comma/semicolon and tab delimited text files respectively. All other file names
are ignored. All the text files in a current directory can be specified by <em>*.csv</em>,
<em>*.tsv</em>, or the current directory name. The <strong>--indelim</strong> option determines the
format of <em>TextFiles</em>. Any file which doesn't correspond to the format indicated
by <strong>--indelim</strong> option is ignored.</p>
<p>
</p>
<h2>OPTIONS</h2>
<dl>
<dt><strong><strong>-f, --fast</strong></strong></dt>
<dd>
<p>In this mode, <strong>--indelim</strong> and <strong>-q --quote</strong> options are ignored. The format of
input and output file(s) are assumed to be similar. And the text lines from <em>TextFiles</em>
are simply transferred to output file without any processing.</p>
</dd>
<dt><strong><strong>-h, --help</strong></strong></dt>
<dd>
<p>Print this help message.</p>
</dd>
<dt><strong><strong>--indelim</strong> <em>comma | semicolon</em></strong></dt>
<dd>
<p>Input delimiter for CSV <em>TextFile(s)</em>. Possible values: <em>comma or semicolon</em>.
Default value: <em>comma</em>. For TSV files, this option is ignored and <em>tab</em> is used as a
delimiter.</p>
</dd>
<dt><strong><strong>-l, --label</strong> <em>yes | no</em></strong></dt>
<dd>
<p>First line contains column labels. Possible values: <em>yes or no</em>. Default value: <em>yes</em>.</p>
</dd>
<dt><strong><strong>-o, --overwrite</strong></strong></dt>
<dd>
<p>Overwrite existing files.</p>
</dd>
<dt><strong><strong>--outdelim</strong> <em>comma | tab | semicolon</em></strong></dt>
<dd>
<p>Output text file delimiter. Possible values: <em>comma, tab, or semicolon</em>
Default value: <em>comma</em>.</p>
</dd>
<dt><strong><strong>-q, --quote</strong> <em>yes | no</em></strong></dt>
<dd>
<p>Put quotes around column values in output text file. Possible values: <em>yes or
no</em>. Default value: <em>yes</em>.</p>
</dd>
<dt><strong><strong>-r, --root</strong> <em>rootname</em></strong></dt>
<dd>
<p>New text file name is generated using the root: &lt;Root&gt;.&lt;Ext&gt;. Default file
name: &lt;FirstTextFileName&gt;1To&lt;Count&gt;Joined.&lt;Ext&gt;. The csv, and tsv
&lt;Ext&gt; values are used for comma/semicolon, and tab delimited text files
respectively.</p>
</dd>
<dt><strong><strong>-w, --workingdir</strong> <em>dirname</em></strong></dt>
<dd>
<p>Location of working directory. Default: current directory.</p>
</dd>
</dl>
<p>
</p>
<h2>EXAMPLES</h2>
<p>To join CSV text files, type:</p>
<div class="ExampleBox">
    % JoinTextFiles.pl -o Sample1.csv Sample2.csv
    <br/>% JoinTextFiles.pl -o *.csv</div>
<p>To join Sample*.tsv TSV text files into a NewSample.tsv file, type:</p>
<div class="ExampleBox">
    % JoinTextFiles.pl -o -r NewSample Sample*.tsv</div>
<p>
</p>
<h2>AUTHOR</h2>
<p><a href="mailto:msud@san.rr.com">Manish Sud</a></p>
<p>
</p>
<h2>SEE ALSO</h2>
<p><a href="./MergeTextFiles.html">MergeTextFiles.pl</a>,&nbsp<a href="./ModifyTextFilesFormat.html">ModifyTextFilesFormat.pl</a>,&nbsp<a href="./SplitTextFiles.html">SplitTextFiles.pl</a>
</p>
<p>
</p>
<h2>COPYRIGHT</h2>
<p>Copyright (C) 2015 Manish Sud. All rights reserved.</p>
<p>This file is part of MayaChemTools.</p>
<p>MayaChemTools is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your option)
any later version.</p>
<p>&nbsp</p><p>&nbsp</p><div class="DocNav">
<table width="100%" border=0 cellpadding=0 cellspacing=2>
<tr align="left" valign="top"><td width="33%" align="left"><a href="./JoinSDFiles.html" title="JoinSDFiles.html">Previous</a>&nbsp;&nbsp;<a href="./index.html" title="Table of Contents">TOC</a>&nbsp;&nbsp;<a href="./MACCSKeysFingerprints.html" title="MACCSKeysFingerprints.html">Next</a></td><td width="34%" align="middle"><strong>March 29, 2015</strong></td><td width="33%" align="right"><strong>JoinTextFiles.pl</strong></td></tr>
</table>
</div>
<br />
<center>
<img src="../../images/h2o2.png">
</center>
</body>
</html>