Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added screen #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions one-liners.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,29 @@ The explicit goal of this tutorial is to provide you with some tricks and tools
awk '{print $1 "\t" $3}' Trinity.counts.RNAseq.txt | head
awk '$1 == "c996_g1_i1"' Trinity.counts.RNAseq.txt

**screen**

Process will continue running in a background session, continue to display output even if you break your connection.

::

screen

Disconnect from screen, Ctrl-A-D (press all keys at the same time).

See how many screens are running:

::

screen -r


Reconnect to a specific screen, copy the name of screen, e.g.

::

screen -r 11074.pts-25.phoenix2


========================
SAMTOOLS
Expand Down Expand Up @@ -121,3 +144,4 @@ Let's learn something about samtools
========================
TERMINATE YOUR INSTANCE
========================