Skip to main content

Text Editors for LINUX

  1. Vim   http://www.vim.org/
  2. Emacs   https://www.gnu.org/software/emacs/
  3. Sublime Text   https://www.sublimetext.com/
  4. Atom   https://atom.io/
  5. Gedit   https://wiki.gnome.org/Apps/Gedit
  6. Geany   https://www.geany.org/
  7. Brackets   http://brackets.io/
  8. Vi   http://ex-vi.sourceforge.net/
  9. GNU nano   https://www.nano-editor.org/
  10. Bluefish   http://bluefish.openoffice.nl/index.html
  11. Kate (text editor)   https://kate-editor.org/
  12. Komodo Edit   https://www.activestate.com/komodo-ide/downloads/edit
  13. JEdit   http://www.jedit.org/
  14. Pico (text editor)   http://www.washington.edu/pine/
  15. SciTE   http://www.scintilla.org/SciTE.html
  16. KWrite   https://www.kde.org/applications/utilities/kwrite/
  17. Spacemacs   http://spacemacs.org/
  18. UltraEdit   https://www.ultraedit.com/
  19. NEdit   https://sourceforge.net/projects/nedit/
  20. Programmer's Notepad   http://www.pnotepad.org/
  21. Leafpad   http://tarot.freeshell.org/leafpad/
  22. Ed (text editor)   https://www.gnu.org/software/ed/
  23. XEmacs   https://www.xemacs.org/
  24. Pluma (editor)   https://github.com/mate-desktop/pluma
  25. JED (text editor)   http://www.jedsoft.org/jed/
  26. Kile   https://kile.sourceforge.io/index.php
  27. Joe's Own Editor   http://joe-editor.sourceforge.net/
  28. ne editor   http://ne.di.unimi.it/
  29. E Text Editor https://github.com/etexteditor/e

Comments

  1. A Plain Text Editor
    Plain Text files
    That's right, if you're writer on a budget, you don't need to spend any money buying expensive writing software or apps. Instead, you can use the text editor that comes free with your operating system.
    Just open up Notepad on Windows or TextEdit on a Mac. I like plain text editors for writing something short quickly and easily, without thinking much about it. I wrote a blog post about the benefits of using plain text editors as writing software.
    Use for: writing whatever, wherever

    ReplyDelete

Post a Comment

Most Viewed Post

How to keep chain ID / IDs in GROMACS?

In GROMACS , while converting pdb file (monomer or multimer) into .gro file, it do not preserve the chain ID information. Due to the lack of chain ID information, pdb file retrieved from .gro file at any stage of the simulation has missing chain IDs and pdb file can not be visualized properly in PYMOL / RASMOL . There are two ways to convert .gro file into .pdb Lets say your protein name is xyz.pdb 1] gmx editconf -f xyz.gro -o xyz.pdb 2] gmx trjconv -f  xyz.gro -o xyz.pdb -s xyz.tpr Only ' trjconv ' will retrieve the chain ID information for all the chains. and not ' editconf '. If you have monomer protein and wish to assign any chain ID then following command will be of your interest: gmx editconf -f xyz.gro -o xyz.pdb -label [ chain-ID ]

GNUPLOT: How to draw trend line?

How to draw trend line in the GNUPLOT? If you like to plot graphs in gnuplot and dont know how to plot trendline then here you are. Follow the steps mentioned below... 1. You should have a files with X and Y values 2. Open GNUPLOT (Operating system dosen't change anything here. It works on all systems) 3. Type the command in the gnuplot terminal Lets say I have a file for eg. '1.txt' p '1.txt' u 1:2 w d title '', '1.txt' u 1:2 smooth acsplines title '1.txt' OR p '1.txt' u 1:2 w d title '', '1.txt' u 1:2 smooth bezier title '1.txt' It will plot as below...

Python : Turtle tree

Turtle module can be used to draw some very nice patterns in Python. Following are some examples with code. ==================== import turtle import random t = turtle.Turtle( shape = "circle" ) t.lt( 90 ) lv = 14 l = 120 s = 30 t.color( 'indigo' ) t.width(lv) t.penup() t.bk(l) t.pendown() t.fd(l) def draw_tree ( l , level ): width = t.width() # save the current pen width t.width(width * 3.0 / 4.0 ) # narrow the pen width l = 3.0 / 4.0 * l #t.color(R,G,B) #provide the RGB numbers t.color(random.random(), random.random(), random.random()) t.lt(s) t.fd(l) if level < lv: draw_tree(l, level + 1 ) t.color(random.random(), random.random(), random.random()) t.bk(l) t.rt( 2 * s) t.fd(l) if level < lv: draw_tree(l, level + 1 ) t.color(random.random(), random.random(), random.random()) t.bk(l) t.lt(s) t.width(width) # restore the previous pen width t.speed( "fastest" ) draw_tree(l, 5 ) turtle.done() ===========

MD convert (xtc to dcd)

CATDCD program can be used to convert one file format to another file format. For example: How to convert trajectory output of GROMACS .xtc format into NAMD .dcd format ==== /path/to/catdcd -o /path/to/save/file/abc.dcd -xtc /input/path/to/save/file/abc.xtc ==== How to install CATDCD? Follow the link-   https://www.ks.uiuc.edu/Development/MDTools/catdcd/ Download the catdcd-X.Xx.tar.gz Extract all files from the tar. Locate the catdcd file. It should be in directory :  catdcd-4.0b/LINUXAMD64/bin/catdcd4.0/ Source the catdcd in your bashrc: export PATH="/path/to/catdcd/directory/:$PATH"

USA COVID Tracking state-level COVID-19 case testing data

 

Science News

Enter your email address:

PhD Vacancy Bioinformatics

PhD Vacancy Chemoinformatics