The sequencing tag has no wiki summary.
1
vote
3answers
47 views
Scheme sequencing
I am new to Scheme and I am trying to familiarize myself with the language by reading Structure and Interpretation of Computer Programs. I am a bit confused about sequencing.
First, I understand ...
-2
votes
3answers
89 views
Python: delinitate consecutive regions
I've got a .txt such as (tabs separated):
1 2345
1 2346
1 2347
1 2348
1 2412
1 2413
1 2414
The first four consecutive lines contain the consecutive integer values 2345 through 2348. Similarly, the ...
0
votes
0answers
91 views
RNA-SeQC generates error
I was running RNA-SeQC software in command line. I tried withto follow the example sets provided on RNA-SeQC website and following the instructions as stated.
The command was:
$ java -jar ...
2
votes
1answer
58 views
Sequencing documents in distributed CouchDB system
I am implementing a distributed audio repository on which registered users can create audio recordings and share these with other registered users. Ideally we would like to run the repository on a few ...
0
votes
2answers
30 views
Finding RNAs and information in a region
I want to find novel and known RNAs and transcripts in a sequence of about 10 KB. What is the most easiest way using bioinformatics tools to start with if that sequence is not well annotated in ...
0
votes
0answers
25 views
mapping serverside fonts with client fonts
We have developed a 3tier application for elearning. Client app is a JAVA application that allows content authoring and then generating different outputs as pdf, ppt, html. Most of font files are ...
1
vote
2answers
383 views
Scrapy forum scraping, synchronization strategies between the item pipeline and the request processors
Dissclaimer This question is hard to answer directly, and you will need to have a good understanding of scrapy and program sequencing to answer it. It is hard for me to shrink wrap the question into ...
1
vote
1answer
227 views
Using jQuery to perform actions in sequence
I am using the fullscreenr jQuery plugin on my page. First, I hide the image, then I run fullscreenr on it using the waitforimage plugin, and then finally I use fadeIn to display it:
<img ...
0
votes
1answer
107 views
What language would be most fitting to use for GUI based realtime synthesis and sequencing applications?
I'm looking to program synthesizers and sequencers, however I do not want to use a visual programming language like MSP or PD. What would be the best language for making programs for realtime ...
0
votes
1answer
1k views
Animating image sequence with JavaScript
I have a sequence with images of an object from different angles. I want the object to be faux rotated when the user drags its mouse, and this I have implemented.
But what I want, is when the mouse ...
5
votes
1answer
768 views
Python recursive function exceeds recursion limit. How can I convert it to iteration
I have created a function that reads lists of ID pairs (i.e. [("A","B"),("B","C"),("C","D"),...] and sequences the ID's from start to finish including any branches.
Each list of ordered ID's is held ...
3
votes
5answers
941 views
How do I reset sequence numbers to become consecutive?
I've got a mysql table where each row has its own sequence number in a "sequence" column. However, when a row gets deleted, it leaves a gap. So...
1
2
3
4
...becomes...
1
2
4
Is there a neat ...
0
votes
2answers
217 views
Resequencing a column with identifier in Postgresql
The following code works and creates a temporary table with a sequence number which is restarted for every new name:
with results as (select row_number() over (partition by name order BY name) as ...
1
vote
1answer
71 views
Algorithm for piecing together a sequence from multiple fragments
I am working on a real-time embedded system. I am trying to create a detailed timing analysis. I have collected runtime data, recording the start and stop time of each interrupt. Each burst of ...
5
votes
4answers
514 views
Haskell tail-recursion performance question for Levenshtein distances
I'm playing around with calculating Levenshtein distances in Haskell, and am a little frustrated with the following performance problem. If you implement it most 'normal' way for Haskell, like below ...
1
vote
2answers
190 views
Sequencing 2 lines of jQuery
I have the following lines of jQuery:
// When dragging ends
stop: function(event, ui) {
// Replace the placeholder with the original
$placeholder.after( $this.show() ).remove();
// Run a ...