Assoc.Prof.Dr. Alper YILMAZ
Assoc.Prof.Dr. Alper YILMAZ
Home
Posts
Projects
Talks
Publications
All
Thesis
Journal Articles
Conference Abstracts
Tutorials
Courses
People
Teaching
Contact
Light
Dark
Automatic
bioinformatics
Extract upstream region sequence with bedtools
Soon after SAM/BAM format became standard for short-read alignment softwares, high caliber tools have been emerging that can process the widely accepted format. bedtools is one of them and it’s easy to use and flexible.
Last updated on Dec 28, 2021
2 min read
perl one-liner to pick random sequences from fasta file
In an earlier [post]({{ ref “post/perl-one-liner-to-process-sequence-files-in-stream.md” }}) we learned how to use Bio::SeqIO module to process fasta files with one-liner. Let’s do more with this capability. What about selecting random sequences from a fasta file?
Last updated on Dec 28, 2021
1 min read
Visualize Circos images with Seadragon
Circos is a very powerful tool to visualize different types of data (expression, homology, etc) in circular fashion. The software is capable of producing very large images if desired, suitable for posters.
Last updated on Dec 28, 2021
1 min read
perl one-liner to process sequence files in stream
Need a practical way to process fasta files with Bio::SeqIO module ? Below code will print sequence id and sequence length with tab per line. perl -MBio::SeqIO -e '
s
e
q
=
B
i
o
::
S
e
q
I
O
−
>
n
e
w
(
−
f
h
=>
\*
S
T
D
I
N
)
;
w
h
i
l
e
(
myseq=$seq->next_seq){print
m
y
s
e
q
−
>
i
d
,
"
\t
"
,
myseq->length,"\n";}' < filename OR
Last updated on Dec 28, 2021
1 min read
Cite
×