Results for "Linux"

Tags

  • How to create a Linux OS bootable drive ?

    Tags: Linux, OS, Drive, Bootable, Device, Drive

    1531 days ago

  • Finally, a command line shell for the 90s https://fishshell.com/ #Shell #Command #Linux #FishShell

    Tags: Shell, Command, Linux, FishShell

    1177 days ago

  • Open in terminal of Linux sudo apt-get install nautilus-extension-gnome-terminal #Terminal #Linux

    Tags: Terminal, Linux

    942 days ago

  • Subprocess pkg

    Subprocess is one of simplest way of running linux command from within python code Example: if you want to run fastqc for QC of fastq file: from subprocess import Popen,PIPE,call p=Popen(["fastqc","-f","fastq","-o", "/home/name/result/","/dev/stdin"],stdin=fopen("read.fastq","r") ,stdout=PIPE...

    Tags: python, linux, PIPE

    3543 days ago

  • #Remove all line that start with # file: $ sed '/^#/ d' filename #line #sed #linux

    Tags: Remove, line, sed, linux

    2604 days ago

  • Split the file in Linux with size. $ split --bytes=50M aaaa.fa #split #linux #size

    Tags: split, linux, size

    2490 days ago

  • Remove the unwanted characters from Fasta file: sed -e '/^[^>]/s/[^ATGCatgc]/N/g' infile.fa #sed #unwanted #illegal #remove #correct #fasta #linux

    Tags: sed, unwanted, illegal, remove, correct, fasta, linux

    2339 days ago

  • Installing BLAT on Linux !

    It's been a while since I last installed BLAT and when I went to the download directory at UCSC: http://users.soe.ucsc.edu/~kent/src/ I found that the latest blast is now version 35 and that the code to download was: blatSrc35.zip. However, you can also get pre-compiled binaries at...

    Tags: blat, install, linux, alignment

    2057 days ago

  • Linux advantages

    https://www.forbes.com/sites/jasonevangelho/2018/07/30/ditching-windows-heres-how-ubuntu-updates-your-pc-and-why-its-better/#7aa6fa5f7c23 https://www.forbes.com/sites/jasonevangelho/2018/07/23/5-reasons-you-should-switch-from-windows-to-linux-right-now/#70c74923777b

    Tags: linux, windows

    1551 days ago

  • Perl one-liner for beginners !

    I often use the following arguments to perl: -e Makes the line of code be executed instead of a script -n Forces your line to be called in a loop. Allows you to take lines from the diamond operator (or stdin) -p Forces your line to be called in a loop. Prints $_ at the end   This ...

    Tags: perl, oneliner, linux, handy, script, codes

    1375 days ago