Skip to content

Commit

Permalink
Update 2024-09-05-hands-on.md
Browse files Browse the repository at this point in the history
added spacing
  • Loading branch information
tralynca authored Oct 16, 2024
1 parent 8a0f599 commit b7a2ea4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modules/hands-on/_posts/2024-09-05-hands-on.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,35 +39,35 @@ The Unix CLI plays a pivotal role in bioinformatics, offering you a powerful and
* Linux is Open Source and has attracted many different contributors.
* Implemented in over 90% of supercomputers allowing for improved scalability.

<br>
<br><br>

#### Navigate the Unix File System
Navigating the Unix file system is essential for efficiently managing files and directories within the operating system. The Unix file system is structured as a hierarchical tree, starting from the root directory and branching out into subdirectories. Basic commands like `cd` (change directory), `ls` (list files) and `pwd` (print working directory) allow users to move through this structure, view contents and identify their current location. Understanding file paths (both absolute and relative) is crucial for accessing files accurately for a variety of analyses. Mastering these navigation skills streamlines data analyses and workflow development by laying the groundwork for utilising powerful bioinformatics tools.
<br>
<br><br>

#### File Management
File management in Unix is a critical skill for effectively organising and manipulating data within the operating system. Unix provides a variety of commands that facilitate the creation, deletion and modification of files and directories. Commands such as `mkdir` (make directory), `rm` (remove files), `cp` (copy files) and `mv` (move or rename files) empower users to maintain an orderly file structure, essential for handling large datasets commonly encountered in fields like bioinformatics.

Additionally, understanding file permissions with commands like `chmod` (change mode) ensures that users can control access to sensitive data. Proficient file management not only enhances productivity but also ensures data integrity and accessibility, making it an indispensable aspect of working in a Unix environment.
<br>
<br><br>

#### Text Processing Tools
Text processing tools in Unix are invaluable for analysing and manipulating data, particularly in fields like bioinformatics where large datasets are common. Commands such as `grep` , `awk` and `sed` allow users to search for specific patterns, format text and transform data efficiently. For instance, `grep` can be used to find sequences within files, while `awk` excels at processing structured data by manipulating columns and rows. `sed` is a powerful stream editor that enables in-place editing of text files.
The `cut` command is useful for extracting specific fields from data files, `sort` organises data in a specified order and `uniq` filters out duplicate lines. Additionally, `cat` allows users to concatenate and display file contents and `echo` is used to print text or variables to the terminal, which can aid in scripting.
Mastering these tools enhances a bioinformatician's ability to extract meaningful information from complex datasets, automate repetitive text manipulation tasks and prepare data for further analysis.
<br>
<br><br>

#### Networking Tools
Networking tools in Unix such as `ping`, `curl`, `wget`, `scp `and `ssh`, are essential for managing data transfer and connectivity, particularly where accessing remote servers and datasets is commonplace. The `ping` command is used to test network connectivity and diagnose potential issues, while `curl` and `wget` facilitate downloading files from the web or retrieving data from APIs. The `scp` (secure copying) command allows transfer of files between local and remote systems, ensuring data integrity during transfer. Additionally, `ssh` provides a secure method for accessing and managing remote servers, enabling users to execute commands and run analyses remotely.

Mastering these networking tools is crucial for bioinformaticians as they aid in the process of accessing remote resources, sharing data and collaborating with others in a secure and efficient manner.
<br>
<br><br>

#### Data Analysis & Shell Scripting
Shell scripting allows users to automate complex workflows by combining multiple commands into a single executable script, thereby saving time and reducing the potential for human error.The ability to read and write scripts enables users to standardise their analyses, making it easier to reproduce results and share methodologies with collaborators. Additionally, shell scripting can be integrated with bioinformatics tools to streamline tasks such as sequence alignment, variant calling and data transformation

Mastering these skills not only enhances productivity but also empowers researchers to tackle intricate data challenges with confidence and efficiency, ultimately advancing scientific discovery.
<br>
<br><br>

## Hands on Exercises (work in progress)
[CLI Terminal Online](https://sandbox.bio/tutorials/terminal-basics)
Expand Down

0 comments on commit b7a2ea4

Please sign in to comment.