Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~2K People Reached
Favorite Forums
Favorite Tags

11 Posted Topics

Member Avatar for kitjo

I think that you should start by seeing if the db you wish to use is supported in python. I use the sqlite db. Python docs describes the support and provides a tutorial [URL="http://http://docs.python.org/library/sqlite3.html"]

Member Avatar for jordan0420
0
184
Member Avatar for communitygirl90

[CODE]import Tkinter as tk # (x1, y1, x2, y2, ...) data = (100,100,200,300,35,495,450,45) root = tk.Tk() canvas = tk.Canvas(root, height = 500, width = 500) canvas.pack() canvas.create_line(data, fill = 'red') root.mainloop()[/CODE] you will need to adjust (normalize?)your data to fit within the pixel-limits of the screen. That is at least …

Member Avatar for strider1066
0
161
Member Avatar for gsmoura

Your project sounds like fun. rather than using buttons you might explore the canvas widget. I find that the canvas is more flexible than working with buttons/frames. With buttons you can use pack|pack_forget to display and hide them but I can't think of a way to stack images.

Member Avatar for strider1066
0
150
Member Avatar for morgadao

An answer to your question will be, i assume, dependent on the gui package you are using.

Member Avatar for strider1066
0
62
Member Avatar for strider1066

I have registered a new Tkinter module @ pypi. tkPickaColor is a dialog intended for Linux coders to provide a more full featured color chooser than is now available. I say for Linux coders since a better chooser is already available on the MS Windows side. It seems to be …

1
107
Member Avatar for Clueless86

here are several to consider... I use [B]Eric4[/B] for most of what I write, It has a wealth of features. The major downside is the almost complete lack of documentation. [B]Ipython[/B] is great for testing small bits of code. it has a wealth of secialized features for reusing lines of …

Member Avatar for Stefano Mtangoo
0
322
Member Avatar for Begjinner
Member Avatar for Tech B
0
121
Member Avatar for sindhujavenkat
Member Avatar for vnproduktionz

Please provide an example of your input sentence and what you want the output to be.

Member Avatar for vnproduktionz
0
166
Member Avatar for babsbj

I'm assuming that there is some background information that a non-biologist should know before staing with the script. Is a "base pair" an AT, TA, GC, or CG? Are you to search the input strings "GAATTC", "AAGCTT" for the occurance of one of the base pairs?

Member Avatar for strider1066
0
122
Member Avatar for Megabyte89

I believe there may be two problems. [I]Results[/I] appears to be undefined within the function. Either pass in [I]results[/I] as an argument or use [I]self.results.[/I] (The original definition of results should also be made in the method above. Secondly, the syntax of the pysqlite statement appears to be incorrect try.. …

Member Avatar for strider1066
0
213

The End.