How To Install cct-examples on Kali Linux

In this tutorial we learn how to install cct-examples on Kali Linux. cct-examples is example data for testing the package cct

Introduction

In this tutorial we learn how to install cct-examples on Kali Linux.

What is cct-examples

cct-examples is:

The CGView Comparison Tool (CCT) is a package for visually comparing bacterial, plasmid, chloroplast, or mitochondrial sequences of interest to existing genomes or sequence collections. The comparisons are conducted using BLAST, and the BLAST results are presented in the form of graphical maps that can also show sequence features, gene and protein names, COG category assignments, and sequence composition characteristics. CCT can generate maps in a variety of sizes, including 400 Megapixel maps suitable for posters. Comparisons can be conducted within a particular species or genus, or all available genomes can be used. The entire map creation process, from downloading sequences to redrawing zoomed maps, can be completed easily using scripts included with the CCT. User-defined features or analysis results can be included on maps, and maps can be extensively customized. To simplify program setup, a CCT virtual machine that includes all dependencies preinstalled is available. Detailed tutorials illustrating the use of CCT are included with the CCT documentation.

This package provides the data which can be used as example. These are the same data as used in autopkgtest.

There are three methods to install cct-examples on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install cct-examples Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install cct-examples using apt-get by running the following command:

sudo apt-get -y install cct-examples

Install cct-examples Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cct-examples using apt by running the following command:

sudo apt -y install cct-examples

Install cct-examples Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install cct-examples using aptitude by running the following command:

sudo aptitude -y install cct-examples

How To Uninstall cct-examples on Kali Linux

To uninstall only the cct-examples package we can use the following command:

sudo apt-get remove cct-examples

Uninstall cct-examples And Its Dependencies

To uninstall cct-examples and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove cct-examples

Remove cct-examples Configurations and Data

To remove cct-examples configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge cct-examples

Remove cct-examples configuration, data, and all of its dependencies

We can use the following command to remove cct-examples configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cct-examples

Dependencies

cct-examples have the following dependencies:

References

Summary

In this tutorial we learn how to install cct-examples package on Kali Linux using different package management tools: apt, apt-get and aptitude.