<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Abdullah Al Nahid</title>
    <description>The latest articles on DEV Community by Abdullah Al Nahid (@abdnahid).</description>
    <link>https://dev.to/abdnahid</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F272941%2Fffca2b3b-f3a1-4162-8b80-19dfdad2419c.jpg</url>
      <title>DEV Community: Abdullah Al Nahid</title>
      <link>https://dev.to/abdnahid</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abdnahid"/>
    <language>en</language>
    <item>
      <title>How to install Gromacs, PyMOL, AutoDock Vina, VMD, MGLTools, Avogadro2, Open Babel in Ubuntu 20.04</title>
      <dc:creator>Abdullah Al Nahid</dc:creator>
      <pubDate>Sun, 31 Oct 2021 14:34:52 +0000</pubDate>
      <link>https://dev.to/abdnahid/how-to-install-gromacs-pymol-autodock-vina-vmd-mgltools-avogadro-open-babel-in-ubuntu-2004-1867</link>
      <guid>https://dev.to/abdnahid/how-to-install-gromacs-pymol-autodock-vina-vmd-mgltools-avogadro-open-babel-in-ubuntu-2004-1867</guid>
      <description>&lt;p&gt;One of the most time-consuming and frustrating aspects of computational tasks has always been properly installing software and getting it up and running in no time. In the case of bioinformatics tools, this is notoriously difficult in some cases, particularly in Linux-based operating systems such as Ubuntu, where one-click installer files, unlike Windows, are not an option. Although much of the popular software in the bioinformatics world is easy to install in Ubuntu if one is familiar with the ecosystem, a beginner will certainly have a difficult time circling the internet trying to find a proper installation method, at least, that’s what I had to go through when I first started out.&lt;/p&gt;

&lt;p&gt;Here in this article, I compiled out the installation methods of some of the most commonly used bioinformatics and simulation tools, as well as how to run these tools after installing them on an Ubuntu 20.04 machine. Feel free to let me know which software should be added next.&lt;br&gt;
&lt;br&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Before running any of the commands below, run this command once:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get -y update
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  1. Avogadro2 &lt;br&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install -y avogadro
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;Avogadro2&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;avogadro2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  2. PyMOL
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install -y pymol
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;pymol&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pymol
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  3. Gromacs
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install -y gromacs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;Gromacs&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gmx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  4. VMD
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd ~

curl -k https://www.ks.uiuc.edu/Research/vmd/vmd-1.9.3/files/final/vmd-1.9.3.bin.LINUXAMD64-CUDA8-OptiX4-OSPRay111p1.opengl.tar.gz --output vmd.tar.gz

mkdir -p vmd

tar -xvzf vmd.tar.gz -C vmd --strip-components=1

cd vmd

./configure

cd src

sudo make install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;VMD&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;vmd
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  5. AutoDock Vina
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install -y autodock-vina
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;AutoDock Vina&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;vina
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  6. MGLTools
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd ~

curl -k https://ccsb.scripps.edu/download/532/ --output mgltools.tar.gz

mkdir -p mgltools

tar -xvzf mgltools.tar.gz -C mgltools --strip-components=1

cd mgltools

bash install.sh

source ./initMGLtools.sh 

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;Python Molecule Viewer (PMV)&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pmv
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;AutoDockTools (ADT)&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;adt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;Vision&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;vision
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  7. Open Babel Command Line Program
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install -y openbabel
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;openbabel&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;obabel
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  8. Open Babel Graphical User Interface (GUI)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install -y openbabel-gui
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How to run &lt;code&gt;openbabel gui&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;obgui
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>linux</category>
      <category>bash</category>
      <category>bioinformatics</category>
    </item>
    <item>
      <title>Linux commands to compress and decompress files and directories</title>
      <dc:creator>Abdullah Al Nahid</dc:creator>
      <pubDate>Tue, 14 Sep 2021 09:25:12 +0000</pubDate>
      <link>https://dev.to/abdnahid/linux-commands-to-compress-and-decompress-files-and-directories-4g23</link>
      <guid>https://dev.to/abdnahid/linux-commands-to-compress-and-decompress-files-and-directories-4g23</guid>
      <description>&lt;p&gt;Being an avid linux os user, I often find myself googling how to compress a single file or a directory using bash terminal. The purpose of this article is to compile all those handy commands that I have to copy-paste from internet.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Comment if you want more compression related commands that you frequently use&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  1A. Compress to tar.gz
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###### For a file
tar -cvzf &amp;lt;output-file&amp;gt; &amp;lt;input-file&amp;gt;

###### For a folder
tar -cvzf &amp;lt;output-file&amp;gt; &amp;lt;input-folder&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###### For a file
tar -cvzf file.tar.gz myfile.csv

###### For a folder
tar -cvzf documents.tar.gz Documents
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  1B. Decompress tar.gz
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;tar -xvzf &amp;lt;tar-gz-file&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;tar -xvzf work.tar.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  2A. Compress to .tar
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###### For a file
tar -cvf &amp;lt;output-file&amp;gt; &amp;lt;input-file&amp;gt;

###### For a folder
tar -cvf &amp;lt;output-file&amp;gt; &amp;lt;input-folder&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###### For a file
tar -cvf file.tar myfile.csv

###### For a folder
tar -cvf documents.tar Documents
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  2B. Decompress .tar
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;tar -xvf &amp;lt;tar-file&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;tar -xvf work.tar
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  3A. Compress to .gz
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gzip &amp;lt;filename&amp;gt;

###### To keep the original input file:
gzip -k &amp;lt;filename&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gzip documents.txt

###### To keep the original input file
gzip -k documents.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  3B. Decompress .gz
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gunzip &amp;lt;gz-file&amp;gt;

###### To keep the original compressed file:
gunzip -k &amp;lt;gz-file&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;gunzip filename.gz

###### To keep the original compressed file
gunzip -k filename.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  4A. Compress to .zip
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###### For a single file
zip &amp;lt;output-zip-file&amp;gt; &amp;lt;input-filename&amp;gt;

###### For multiple files
zip &amp;lt;output-zip-file&amp;gt; &amp;lt;file-1&amp;gt; &amp;lt;file-2&amp;gt; ... &amp;lt;file-n&amp;gt;

###### For multiple files with same extension (.csv, .pdf) 
zip &amp;lt;output-zip-file&amp;gt; *&amp;lt;extension&amp;gt;

###### For a folder
zip -r &amp;lt;output-zip-file&amp;gt; &amp;lt;input-folder-name&amp;gt;

###### For multiple folders
zip -r &amp;lt;output-zip-file&amp;gt; &amp;lt;folder-1&amp;gt; &amp;lt;folder-2&amp;gt; ... &amp;lt;folder-n&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;###### For myfile.txt file
zip document.zip myfile.txt

###### For multiple files
zip files.zip report.docx document.pdf data.txt

###### For multiple files with same extension (.csv, .pdf)
zip pdfs.zip *.pdf
zip textfiles.zip *.txt

###### For Documents folder
zip -r temp.zip Documents

###### For Books and Documents folders
zip -r folders.zip Books Documents
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  4B. Decompress .zip
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;unzip &amp;lt;zip-filename&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;unzip document.zip
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;In case of error &lt;code&gt;unzip command not found&lt;/code&gt;, run this:&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt-get install unzip
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt; &lt;/p&gt;

</description>
      <category>linux</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Bash Commands for Bioinformatics Beginners: Part 1</title>
      <dc:creator>Abdullah Al Nahid</dc:creator>
      <pubDate>Sat, 26 Sep 2020 16:07:15 +0000</pubDate>
      <link>https://dev.to/abdnahid/bash-commands-for-bioinformatics-beginners-2m8j</link>
      <guid>https://dev.to/abdnahid/bash-commands-for-bioinformatics-beginners-2m8j</guid>
      <description>&lt;p&gt;&lt;em&gt;Disclaimer: This article is a collection of useful bash commands that I have been using regularly.&lt;/em&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  1. Count Fasta Sequences
&lt;/h3&gt;

&lt;p&gt;This command will help you to count fasta sequences in a fasta file.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;grep -c "&amp;gt;" &amp;lt;fasta-file-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; &lt;code&gt;grep -c "&amp;gt;" sequences.fasta&lt;/code&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  2. Count Empty Lines
&lt;/h3&gt;

&lt;p&gt;If you want to count empty/blank lines in a file, then this command will help you.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;grep -c "^$" &amp;lt;file-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; &lt;code&gt;grep -c "^$" sequences.fasta&lt;/code&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  3. Remove Empty Lines
&lt;/h3&gt;

&lt;p&gt;To remove empty/blank lines from a file, this command is useful.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sed -i "/^$/d" &amp;lt;file-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; &lt;code&gt;sed -i "/^$/d" sequences.fasta&lt;/code&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  4. Merge Multiple CSV Files
&lt;/h3&gt;

&lt;p&gt;If you have multiple CSV files with same header, then you can use this command to merge them. The command below has two parts. &lt;br&gt;
In the &lt;code&gt;head -n 1 &amp;lt;a-csv-file&amp;gt; &amp;gt; combined.out&lt;/code&gt; part, replace &lt;code&gt;&amp;lt;a-csv-file&amp;gt;&lt;/code&gt; with any of the .csv file. Check example section for better understanding.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;head -n 1 &amp;lt;a-csv-file&amp;gt; &amp;gt; combined.out &amp;amp;&amp;amp; tail -n+2 -q *.csv &amp;gt;&amp;gt; combined.out  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After running this command, rename the &lt;code&gt;combined.out&lt;/code&gt; file to &lt;code&gt;combined.csv&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; &lt;br&gt;
Suppose, you have 4 csv files. &lt;br&gt;
&lt;code&gt;file1.csv&lt;/code&gt;&lt;br&gt;
&lt;code&gt;file2.csv&lt;/code&gt;&lt;br&gt;
&lt;code&gt;file3.csv&lt;/code&gt;&lt;br&gt;
&lt;code&gt;file4.csv&lt;/code&gt;&lt;br&gt;
So your should run:&lt;br&gt;
&lt;code&gt;head -n 1 file1.csv &amp;gt; combined.out &amp;amp;&amp;amp; tail -n+2 -q *.csv &amp;gt;&amp;gt; combined.out&lt;/code&gt;&lt;br&gt;
Then you will see a new &lt;code&gt;combined.out&lt;/code&gt; file. Don't forget to rename this file to &lt;code&gt;combined.csv&lt;/code&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  5. Unzip all zip files
&lt;/h3&gt;

&lt;p&gt;Unzipping all .zip files in a folder is a breeze with this command.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;unzip "*.zip"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;However, this command will not delete the .zip files after unzipping. If you are looking for a command to delete all the files with same file format (.zip, .gz, .txt), then scroll below.&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  6. Delete all files with same file format
&lt;/h3&gt;

&lt;p&gt;Suppose, you want to delete multiple files with same file format, then these two commands will come in handy for you.&lt;br&gt;
First, check what files you are going to remove:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;find . -name "*&amp;lt;file-type&amp;gt;" -type f 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then, run the delete command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;find . -name "*&amp;lt;file-type&amp;gt;" -type f -delete 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Check the example part for better understanding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt; &lt;br&gt;
If you want to delete all the &lt;code&gt;.gz&lt;/code&gt; files, then the commands should look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;find . -name "*.gz" -type f
find . -name "*.gz" -type f -delete
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To delete all .zip files:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;find . -name "*.zip" -type f
find . -name "*.zip" -type f -delete
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;br&gt;&lt;br&gt;
That's all for now. Feel free to add more bash commands in the comments section and I will add them to the article.&lt;/p&gt;

</description>
      <category>bioinformatics</category>
      <category>bash</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
