Please Explain Window Size and Step Size
2
2
Entering edit mode
4.3 years ago
crcarroll ▴ 90

Hi,

In regards to a sliding window analysis, can someone explain and differentiate the concepts of "window size" and "step size"?

Thank you

alignment mapping sequencing • 7.2k views
ADD COMMENT
8
Entering edit mode
4.3 years ago
Ram 43k

A sliding window analysis has two components: sliding and window. "Window size" is the size of the window, which is the length of the sequence you're looking at each time in the analysis. "Step size" is the size of the "sliding" action, which is the length of sequence you move between each window.

For example, in the sequence "MARY HAD A LITTLE LAMB", if window size = 3 and step size = 5,

MARY HAD A LITTLE LAMB

MAR___________________ #window-1

12345HAD______________ #window-2

1234512345 LI_________ #window-3

123451234512345LE ____ #window-4

12345123451234512345MB #window-5
ADD COMMENT
0
Entering edit mode

Very clear explanation. Thank you very much for taking the time!

ADD REPLY
0
Entering edit mode
4.3 years ago
position=0;
while(position< chromosome_length) {
      do_something_between(position,position+window_size);
      position = position + step_size;
     }
ADD COMMENT

Login before adding your answer.

Traffic: 1475 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6