A sequence is an ordered list of objects (or events). Like a set, it contains members (also called elements or terms), and the number of terms (possibly infinite) is called the length of the sequence. Unlike a set, order matters, and exactly the same elements can appear multiple times at different ...
2
votes
3answers
37 views
python: creating an irregular iterator
This is a stumper. How can I create the following sequence:
x = 3,4,9,10, ..., 6k+3, 6k+4
so I can use it elsewhere:
y = [something(i) for i in x]
Any ideas? I can't seem to think of one.
0
votes
2answers
15 views
regex to match any filename mask
I have to write a regex that will match any sequence filename masks, eg:
Three test cases:
object.scrn_1-2_0006 - should match object.scrn_1-2
object.scrn0006 - should match object.scrn
object0006 - ...
1
vote
2answers
38 views
Unpacking sequences in python
I started learning python few weeks ago(with no previous knowledge in programming), and went onto the following problem related to unpacking of sequences, which confuses me a lot.
For some reason ...
-1
votes
0answers
10 views
generate sequence diagram from use case [closed]
I have created a Use Case with a scenario and several alternates.
The activity diagram is created fine, but I get nothing when I try to create a sequence diagram. No error, just a black diagram.
Do ...
1
vote
2answers
33 views
Printing plot depending on variable conditions on 2 pdf pages
I'am trying to print a plot, depending on a variable with 12 terms. This plot is the result of cluster classification on sequences, using OM distance.
I print this plot on one pdf page :
...
0
votes
0answers
52 views
Data mining: Looking for gentle tutorial on sequence data mining
By sequence, I mean data in some order, eg. time series, DNA sequence, .. And by data mining I mean discovering patterns (rather than predicting, clustering, ..)
I've just read up the Apriori ...
0
votes
1answer
46 views
Android dialog pause activity
I want to show dialog and it will pause activity . To wait user turn on the GPS . After that it can query database to fill the list .
The picture below description what I want to do
And ...
1
vote
1answer
65 views
In Python, how can I get the intersection of two lists, preserving the order of the intersection?
I have a list of lists ("sublists") and I want to see if the same sequence of any unspecified length occurs in more than one sublist. To clarify, the order of items must be preserved - I do not want ...
1
vote
0answers
24 views
Setting GPS and waiting for enable
I have a problem with setting GPS service . I want to check if GPS is enable . If it is disable , it will display a dialog to user turn it on . The problem is it not wait for user enable GPS and get ...
1
vote
5answers
59 views
extracting fasta sequences based on position
I am a newbie to perl. Still learning.
I have a file in the fasta format. I would like to extract the sequences spanning a particular position. For example, from position 200 to 300
>Contig[0001]
...
0
votes
0answers
13 views
Loading images in sequence without waiting
I found this code to load my images in order. the images has a class="revealcontent" and it works fine.
What I wanted to do is for the images to start loading immediately instead of waiting for all ...
0
votes
1answer
23 views
Keep history/order of keys pressed
I have an array with keyboard combinations and this should validate to press keys exactly in the order of the array example
var listkeys = ['left', 'right', 'bottom', 'top'];
if(validate key){
...
1
vote
0answers
32 views
Android sequence task
I have code like this
public class RestaurantListFragment extends ListFragment {
ArrayList<Restaurant> restaurants;
SQLDataHelper dataHelper;
GPSTracker gps;
public View ...
-1
votes
1answer
35 views
UML Squence Diagram - visualize validation of data
A method performs successively validation checks with some passed data.
If a validation check fails, a exception will be immediately thrown and the method aborted.
How can visualize this flow with ...
3
votes
4answers
44 views
Is it possible to use a PG sequence on a per record label?
Does PostgreSQL 9.2+ provide any functionality to make it possible to generate a sequence that is namespaced to a particular value? For example:
.. | user_id | seq_id | body | ...
...
0
votes
2answers
83 views
Why doesn't this thread ever end?
I'm trying to control a piece of test equipment and I need to get the sequencing correct of how I communicate with it.
First I call StartGettingTraceData(). Then some time in the future I call ...
0
votes
1answer
33 views
how do i generate sequence numbers in the for loop
i need help to generate a sequence numbers in the for loop i have code but it is not working properly as i want to do it is not generating series numbers?
i want script generate number like this
...
0
votes
2answers
37 views
print out xquery sequence and exit
Is there a way to "die" in execution flow in an xquery file and output a nicely formatted printout of a sequence variable?
I'm trying something like:
return { fn:error(xs:QName("ERROR"), $xml) }
...
0
votes
3answers
67 views
i need help to generate a sequence numbers in the for loop
i need help to generate a sequence numbers in the for loop i have code but it is not working properly as i want to do it is generating random numbers?
if for loop reached to the 999 then ...
3
votes
2answers
47 views
Enumerator#each Restarts Sequence
I'm surprised that Enumerator#each doesn't start off at the current position in the sequence.
o = Object.new
def o.each
yield 1
yield 2
yield 3
end
e = o.to_enum
puts e.next
puts e.next
...
-1
votes
1answer
42 views
how sequence maintain concurrency in oracle [closed]
what happened, if sequence has been access at the same time (even in milliseconds) by multiple users. Whether it will be dead lock or Oracle have some mechanism ?
I mean, If A and B users has ...
0
votes
0answers
57 views
JavaScript typing, in sequence
I am trying to have my site look like it is typing the content on screen. I got it to do one section correctly, but it isn't running the rest of it correctly. Each new section ($test), links to a ...
1
vote
2answers
34 views
Divide records into groups - quick solution
I need to divide with UPDATE command rows (selected from subselect) in PostgreSQL table into groups, these groups will be identified with integer value in one of its columns. These groups should be ...
-1
votes
0answers
15 views
one sequence, multiple entities issue
I need to map one oracle sequence to multiple entities
When running unit tests with arquillian, I have exceptions throwned telling me the sequence already exists.
I guess it creates the sequence ...
1
vote
1answer
40 views
Clojure and HBase: Iterate Lazily over a Scan
Lets say I want to print the output of an hbase table scan in clojure.
(defmulti scan (fn [table & args] (map class args)))
(defmethod scan [java.lang.String java.lang.String] [table start-key ...
-4
votes
0answers
121 views
C++ Sequence Sum Program [closed]
So I searched here and try working on it on my own but only got so far so I have come for help. The problem is as follows.
A sequence of integers such as 1, 3, 5, 7, … can be represented by a ...
2
votes
2answers
30 views
MySql Query for identifying sequence in a table
I Need help with mysql query to update a new column of the same table based on series of entry and exit dates.
Below is table:
╔════╦═══════════╦═════════════╦═════════════╦════════════════════╗
║ ...
-1
votes
1answer
48 views
Oracle: create sequence number for repeated rows
I have a table with 3 columns:
ID VALUE SEQ
1 100
2 100
3 200
4 200
5 200
Whenever value in column "VALUE is repeated in further rows, value in column "SEQ" ...
1
vote
2answers
45 views
Printing reverse complement of DNA in single-line Perl
I want to write a quick single-line perl script to produce the reverse complement of a sequence of DNA. The following isn't working for me, however:
$ cat sample.dna.sequence.txt | perl -ne '{while ...
0
votes
1answer
63 views
Removing soap envelope from WSO2 proxy
Every outbound message from the WSO2 proxy service is wrapped by a soap envelope by default.
Any possibility to remove it by configuration?
I want the transformed message from the proxy service ...
2
votes
3answers
54 views
Sequence error while inserting multiple rows using “WITH” clause
INSERT INTO items (
item_id, psuedo_row_flag, item_hierarchy_level, 'some other cols...'
)
WITH s_item_group
AS
(
SELECT hier_level, 'some other cols...' FROM ITEM_GROUPS
...
0
votes
3answers
45 views
Formula to Generate List of Specific Numbers
I am relatively new to programing and I'm trying to generate a list of numbers using this formula.
If "i" is the index of the list, the formula would be list[i] = list[i-2] + list[i-3]. The first few ...
0
votes
1answer
39 views
Escape Sequence - Visual Studio - C
My professor has given us a program that we must fill in the blanks of missing functions, and then once complete, turn this finished project .c file in as our final project for the class.
Problem is, ...
0
votes
2answers
38 views
How to apply a function to a sequence of nodes in XSLT
I need to write an XSLT function that transforms a sequence of nodes into a sequence of strings. What I need to do is to apply a function to all the nodes in the sequence and return a sequence as long ...
-2
votes
1answer
36 views
PHP - replace character referring to another character sequence in the array
i have
$a='1024,1025,0000|1020,0000|';
$b='1024,1025,0000,1020,0000,';
i want replace commas (,) in $b with (|) so that $ b is equal to $ a
like this
Output :
...
0
votes
2answers
122 views
Is there a way to programmatically find a pattern from just three elements in a given sequence?
Some Context
I found myself confronting a mathematical meme on Facebook (try not to laugh):
Clearly, this is a simple problem which can be solved by first looking at each number as if they're ...
0
votes
1answer
40 views
Hibernate sequence, use the specific sequence
Today my DB responsible boss told me that I'm using a wrong sequence, in JPA/Hibernate, but I weren't so I checked up on why my generated table entries had a higher ID than the normal(trigger) ...
-4
votes
0answers
36 views
JAVA 1 How do I count occurences of a sequence like ACB in ACBBBDDACB? [closed]
I have a sad lack of skill with arrays even 1 dimensional arrays. Basically, I need to have a list of characters, ABCD, of a set length, then count how many times a pattern appears (e.g ACBBBDACACB, ...
0
votes
2answers
63 views
Panel data: How to specify a variable that refers to “number of years before and after change”?
This is how my time-series, cross-sectional data is structured:
country year group change
Afghanistan 1980 1 0
Afghanistan 1981 1 0
Afghanistan 1982 1 1
Afghanistan 1983 ...
0
votes
5answers
53 views
Extract text with regex between “,”
I have been struggling making a regex to extract the information in below divided in 3 part between the ",". Only the first and second sequence (Friday and the date has succeded).
Friday, 26 Apr ...
1
vote
1answer
80 views
using alt in sequence diagrams for starUML
i am not able to discover how to use the alt/combined fragment correctly in starUML,as in there is no way that i am able to provide the condition after the alt fragment appears.can any1 just list down ...
1
vote
2answers
101 views
wso2 : ESB faultsequence
how to use faultsequence of proxy in esb
i want to use faultsequence when occur a fault in EndPoint. for example i stop service1 using jconsole and want to route message to service2 when call proxy ...
0
votes
1answer
45 views
Visual C++ Watch for key sequence
If I have some form application in C++, how would I set something up so that it watches for a specific key sequence to perform some action? Like, for instance, watching for the user to tap arrow keys ...
0
votes
2answers
50 views
Chain animations in UIVIEW inside of for loop
I have some problems with animations. Here is what I am trying to do.
First I have a for loop where I make some animations of UILabels, for example
label1.frame = CGRectMake(xBoard, 5, ...
1
vote
1answer
23 views
EclipseLink can not insert an entity into oracle
I built an entity with id using oracle sequence like that.
@Entity
@Table(name="C_ESTIMATE")
public class Estimate implements Serializable{
private static final long serialVersionUID = 1L;
...
0
votes
1answer
60 views
Make a Name Sequence
I have table like this
file_nbr name_seq Person_name
10 1 James Linson
10 1 Ronn Dave
10 1 Michael Meyer
12 1 Pamela J. Mayberry
12 1 Randall M. Bachtel
12 1 Cleary ...
2
votes
2answers
42 views
SQL: Trouble in Check Constraint / Sequence
So i created a table, called "exam" with three columns "Name", "Rollno" and "Result P/F". I want it to do the following:
When the name is input (via '&name' syntax), it automatically assigns the ...
-1
votes
1answer
21 views
Read a sequence in reverse
I have a problem here:
if i have a chain sequence as below, how to read this strand in reverse (unix)?
input : CCTTTATCTTTATCTAG
desired output : GATCTATTTCTATTTCC
Thanks for the help. =)
2
votes
2answers
33 views
Collapse sums of elements from multiple sequences into ordered list R
Let r = c(0,1,2) and s = c(0,5,10). I want a function that can take r and s (eventually will take more than two sequences - I want to avoid loops if possible!), and return an ordered list of all ...
1
vote
1answer
26 views
How to extract base with known position
i have a problem here.
Seq1 [organism=Carpodacus mexicanus] C.mexicanus clone
CCTTTATCTTTATCTAGGAGCATGAGCTGGCATAGTTGGAACCGCCCTCAGCCTCCTCATCCGTGCAGAA
...


