2
votes
4answers
255 views
In Clojure, when should I use a vector over a list, and the other way around?
I read that Vectors are not seqs, but Lists are. I'm not sure what the rationale is for using one over the other. It seems that vectors are used the most, but is there a reason for …
1
vote
2answers
55 views
MySql autoincrement column increases by 10 problem
I am a user of a some host company which serves my MySql database. Due to their replication problem, the autoincrement values increses by 10, which seems to be a common problem.
…
2
votes
4answers
359 views
F# how to abstract Console.ReadLine() as string seq
Hi,
I want to write a function to abstract Console.ReadLine() into a string seq
the seq should break when line = null
ConsoleLines(): unit -> string seq
To be used like thi …
0
votes
1answer
25 views
Can you BLAST with BioPython? Anyone have experience with this?
Hi,
I am going to BLAST several sequences and download the top 100 hits or so from each sequence. Then I will pool the downloaded sequences and remove duplicates.
I was thinking …
1
vote
3answers
105 views
Python: Removing characters from beginnings of sequences in fasta format
Hi,
I have sequences in fasta format that contains primers of 17 bp at the beginning of the sequences. And the primers sometimes have mismatches. I therefore want to remove the fi …
0
votes
4answers
210 views
List all sequences in a Postgres db 8.1 with SQL
I'm converting a db from postgres to mysql.
Since i cannot find a tool that does the trick itself, i'm going to convert all postgres sequences to autoincrement ids in mysql with …
3
votes
4answers
251 views
Is Clojure object-oriented at its heart? (Polymorphism in seqs)
Clojure is a functional lisp, reportedly not at all object-oriented, even though it runs on the JVM, a VM designed for an object oriented language. Clojure provides identical inte …
4
votes
8answers
396 views
F#: How do i split up a sequence into a sequence of sequences
Background:
I have a sequence of contiguous, time-stamped data. The data-sequence has gaps in it where the data is not contiguous. I want create a method to split the sequence up …
1
vote
2answers
61 views
Sequential numbers in distributed word
We are building order processing system. We have a cluster of processing servers. We need to assign readable numbers to the orders (e.g. ORD-000001, ORD-000002).
Main problem tha …
1
vote
2answers
119 views
Computing A Specific Generating Function Sequence
http://www.research.att.com/~njas/sequences/A097196
I was wondering how to continue generating the sequence given in the link. It is based off a generating function. Any ideas w …
3
votes
1answer
167 views
How do I get a sequence’s MINVALUE in Oracle 10g PL/SQL?
I wrote a PL/SQL script to set a sequence's value to the maximum value of a table's primary key:
DECLARE
max_idn NUMERIC(18, 0);
seq_nextval NUMERIC(18, 0);
increment_amount …
3
votes
4answers
186 views
Algorithm for music imitation?
I'm interested in automatic music making. I was thinking about a program that is fed a large number of 1-bar arpeggios (= fixed length sequences of notes, for simplicity) and gener …
1
vote
5answers
197 views
interleaving bits with a mask
inputs:
arbitrary bitset, e.g. bit positions 012345
arbitrary bit mask, e.g. (x=1) xx0x0x
output:
xx0x1x2345
That is, I want the first bit of the bitset to be placed in the f …
1
vote
4answers
123 views
Oracle: How are sequences implemented?
To meet some odd business requirements, I'm going to have to implement my own sequence-like counters. I'm going to make a first cut of this in the obvious way, but I would like to …
1
vote
1answer
123 views
Calling Seq.skip and Seq.take in F# (Visual Studio 2010) Beta 1
let aBunch = 1000
let offset = 0
let getIt offset =
MyIEnumerable
|> Seq.skip aBunch * offset
|> Seq.take aBunch
|> Seq.iter ( .. some processing ...)
Calling getIt() w …
