5 Useful Bash Aliases And Functions
Aug 13, 2017
5 Useful Bash Aliases and Functions For Lazy Bioinformaticians
Continuing on our theme of making bioinformatics more sexy with buzzfeed-esque blog post titles, here are 5 useful bash aliases and functions so you can remember fewer non-intuitive options, type fewer keys for the same output, and overall be more productive and efficient in your bioinformatics analysis :D ie. have more time to look at dank memes.
I’ll try to keep to aliases and functions that may be more niche to bioinformatics and ones I haven’t seen frequently included in other “useful bash aliases and functions” lists such as alias ..='cd ..'
. There are many more general lists of useful bash aliases and functions such as this one by Justin Ellingwood and this one by Gulshan Singh.
1. Tar and compress (and untar) all those fastq, csv, vcf, and other files
I can never remember the flags…so let’s just make an easy to understand function called targz to tar.gz a file or folder and likewise for extracting. Note this is a bash function so it should be put into your .profile
or another dedicated .bash_functions
file to be sourced from your .bashrc
.
Functions:
# create .tar.gz
targz() { tar -zcvf $1.tar.gz $1; rm -r $1; }
# extra .tar.gz
untargz() { tar -zxvf $1; rm -r $1; }
Usage:
> targz test
a test
a test/test.txt
untargz test.tar.gz
x test/
x test/test.txt
2. Count number of files in a directory
This is very useful for counting the number of fastq or other dataset files you have.
Function:
numfiles() {
N="$(ls $1 | wc -l)";
echo "$N files in $1";
}
Usage:
> numfiles test
10 files in test
3. Search through your command history
If I’ve typed out the same command more than once, then I’ve typed it out too many times.
Note, aliases should be added to your .bash_aliases
file.
Alias:
alias hs='history | grep'
Usage:
> hs test
1883 emacs test.R
1900 less test.R
2003 history | grep test
2008 hs test
(now you can use !2008
to repeat command #2008)
4. Navigate more easily
This is a simply one, but I use it very frequently. If you work on a shared cluster, your group will likely have a group directory at some obscure path. You will essentially be cd-ing to it all the time. So why not just make a fast alias.
Alias:
# navigation
alias 2pklab='cd /groups/pklab/jfan/'
5. Make a folder and go into it
Another simple one but very helpful. If I make a directory, I often want to cd
into it. So why not just make one command for that?
Function:
mkcd() { mkdir -p $1; cd $1 }
And there you have it. Here is my cat tax for posting a less-than-professional post: (my dog Foxxy)
Want to join in on the fun but don’t know what to blog about? Get inspired with my random buzzfeed-inspired title generator (bioinformatics grad student edition). With inspirational creations like “The 12 Most Beloved Nature Papers Of Your Childhood” and “40 Figures That Will Make Your Skin Crawl”, your next big hit is waiting to be generated.
- Older
- Newer
RECENT POSTS
- Using AI to find heterogeneous scientific speakers on 04 November 2024
- The many ways to calculate Moran's I for identifying spatially variable genes in spatial transcriptomics data on 29 August 2024
- Characterizing spatial heterogeneity using spatial bootstrapping with SEraster on 23 July 2024
- I use R to (try to) figure out which hospital I should go to for shoppable medical services by comparing costs through analyzing Hospital Price Transparency data on 22 April 2024
- Cross modality image alignment at single cell resolution with STalign on 11 April 2024
- Spatial Transcriptomics Analysis Of Xenium Lymph Node on 24 March 2024
- Querying Google Scholar with Rvest on 18 March 2024
- Alignment of Xenium and Visium spatial transcriptomics data using STalign on 27 December 2023
- Aligning 10X Visium spatial transcriptomics datasets using STalign with Reticulate in R on 05 November 2023
- Aligning single-cell spatial transcriptomics datasets simulated with non-linear disortions on 20 August 2023