Leaving Hemis Shukpachen for Tingmosgang 0930 hours, - 8 deg, light snow shower, 3700 mts, expedition gear on, this day, visibility 15 mts at times. Quote heads up âŞ#âworkawayâŹ

#extradirty
Cosmic Funnies
Cosimo Galluzzi
we're not kids anymore.
One Nice Bug Per Day
Aqua Utopiaď˝ćľˇăŽĺşă§č¨ćśăç´Ąă
Not today Justin
đŞź
Jules of Nature
Xuebing Du
The Bowery Presents
Sade Olutola

romaâ

@theartofmadeline

Origami Around

shark vs the universe

blake kathryn
Noah Kahan

â
seen from Vietnam

seen from Russia
seen from Bangladesh

seen from South Africa
seen from Nepal

seen from United States

seen from United States

seen from United States

seen from United Kingdom
seen from United States

seen from United States

seen from Colombia
seen from United States

seen from United States
seen from United States
seen from United States
seen from Sweden
seen from United States

seen from United Kingdom
seen from United States
@sukhdeepsingh-blog
Leaving Hemis Shukpachen for Tingmosgang 0930 hours, - 8 deg, light snow shower, 3700 mts, expedition gear on, this day, visibility 15 mts at times. Quote heads up âŞ#âworkawayâŹ

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Sikhi Langar (Free food and passion)

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Graphs & Sony (Taken with instagram)
Marketing Campaign of the Day: A bicyclist in a sleepy Belgian town couldnât resist when a giant red button caught his attention â it was just asking to be pushed. The dramatic fallout became TNTâs new ad spot in the country.
[reddit]
Many of you might have observed a problem with the removal of the files having a special characters in them. For instance, $1.txt, -bg etc.
# removing $1.txt
rm \$1.txt
# if its the only one file
rm *.txt
# removing -bg, its a little tricky as - denotes the parameter input for rm. So, from...
Linux : Resuming copy (left over files) using rsync
Hola!
Copying left over files and merging is really easy via GUI (graphical user interface) but when it comes to command line, transferring big files or copying fast or usage of script, I always lacked a tool to resume the copy, when it stops or fails in between.
The tool in 'rsync', It was developed in 1996 but still we are ignorant about it.
Quickly using rsync to resume copy:
rsync -a - -progress source/folder/ destination
* Note the slashes, if you want to copy left over items from one folder to another, the folder should be present in the destination dir with the same name as in the source. So, in this case, a folder named 'folder' is present in the destination dir. and the copy will resume with left over files.
'- - progress' is really nice, and will tell you what the tool is copying at the moment.
Have Fun
Sukhi

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
R : counting elements in a list of data.frames (without loop, single line-sapply)
Leute!!
Suppose you have a list of 20 dataframes, each of data frame has 10 columns but different rows. You want to know the length of rows in each dataframe without using loop in a single line.
sapply(x,function(y)length(y[[1]]))
where x is a list
If you are after a specific column, just replace the number [[1]] with it.
Cheers
Sukhi
NGS: Getting coverage from bam file for displaying peaks in UCSC browser in bigwig format.
Hola people!
Quick tutorial on how to convert bam file to bedGraph (different from bed files) for displaying them into UCSC browser. We will convert them to bigwig (bw), which are more portable, encrypted and less space consuming data formats.
Step 1: using a combination of 'samtools' and 'bedtools' and ofcourse 'shell pipe'
samtools view -b file.bam | genomeCoverageBed -ibam stdin -bg -g genomeIndex/mm9.chrom > file.bedGraph &
input file = file.bam; output = file.bedGraph
genomeIndex = mm9.chrom (to get the genome index, which a text file containing the mouse genome size per chromosome, use fetchChromSizes, get it from UCSC ftp http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/fetchChromSizes)
Step2 : sort obtained bedGraph file chromosome wise using sort
sort -k1,1 -k2,2n file.bedGraph > file.bedGraph.sorted
Step 2: converting bedGraph to bigwig
using bedGraphToBigWig utility from UCSC tools (http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig)
bedGraphToBigWig file.bedGraph.sorted genomeIndex/mm9.chrom file.bw
I will make another post, how to use 'bw' (bigwig) files for viewing them on server using a https link and sharing a url.
Any problems, please comment, I will try to answer.
Cheers
Sukhdeep Singh
Max Planck Society
Watching movies in a terminal [Linux] | The Beautiful science http://t.co/9fhtaZ5V
biofeed:
Hey Smart People!
I will quickly tell you how to watch movies in a terminal as an ascii code frameshifts/per second.
The utility used to buffer movies is called âmplayerâ
If mplayer is not installed, do it by
> sudo apt-get install mplayer # for Debian systems (Ubuntu)
Playing in ASCII ART...
Bed files to BigWig conversion | The Beautiful science http://t.co/Ml3XWlG0

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
using sed to remove specific lines from a text file : LINUX
Hey, using sed is awesome if you know how to use it.
 sed -i 's/yo/yeah/g' bÂ
where b is the name of file from where the input is taken and where it gonna store it back and yo is being searched to be replaced with yeah.
Have fun with 'sed'
Cheers
Sukhi
IBM has developed a microprocessor which it claims comes closer than ever to replicating the human brain.
The system is capable of ârewiringâ its connections as it encounters new information, similar to the way biological synapses work.
Researchers believe that that by replicating that feature, the technology could start to learn.
Cognitive computers may eventually be used for understanding human behaviour as well as environmental monitoring.