Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with python
Search options not deleted user 215409
Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability. Use the python tag for all Python related questions. If you believe your question may be even more specific, you can include a version specific tag such as python-3.x.
2 votes
1 answer
90 views
Improvements in how to partition the csv?
I have a csv with data. There are a total number of 9 samples, each sample has multiple fits. Each fit has an associated name, chi2, degrees of freedom, variable name that was fit, and the actual valu …
3 votes
2 answers
106 views
Protein Chemical Shift Prediction processing
I have 2 scripts, one is a tkinter GUI script where the user gives specific inputs, the 2nd script takes those inputs, does some modification, and then sends it back to the GUI script to be written/re …
2 votes
1 answer
33 views
NMRSTAR and,SPARTA file converter for Data RMSD calculations
A protein is composed of amino acids (also called residues). The amide nitrogen and hydrogens (N and H in the script), carbonyl carbon (C), alpha carbon (Ca), beta carbon (Cb), and alpha hydrogen (HA) …
5 votes
2 answers
161 views
Atom searcher (basically a file search function)
I apologize for the title, really didn't know what to call this program. In short, the program takes a file of values for the various atoms of amino acids, and then searches this file based on user in …
5 votes
2 answers
121 views
DNA Translator and Verifier (using BLAST)
To run: python script.py -f forward_file.txt -r reverse_file.txt The correct option to pick when presented with the translations is 1 and 0 from selenium import webdriver from selenium.webdriver.common.keys …
2 votes
1 answer
96 views
Local solver built into a global one
I am trying to optimize writing a script that has 2 minimizations, one dependent on the other. My code is a bit bloated, and I find the global parameters that I am solving for depend quite strongly on …
1 vote
1 answer
134 views
Plot the frequency of occurrence, using shortest string as bounds
Preface: Before anyone suggest using pandas, no I don't want to use pandas, only pure python please. …
1 vote
3 answers
133 views
amino acid data prediction
I want to preface this by saying I didn't quite know where to put this because this isn't quite a stack overflow question. So if this is the wrong place to post, please let me know, and please let me …
2 votes
0 answers
769 views
Strip Poker game
I wrote this for fun just to learn python and get better at programming (especially how to write cleaner/more organized code). So any/all feedback is greatly appreciated. …
4 votes
0 answers
535 views
Python WordCloud GUI
Module: https://amueller.github.io/word_cloud/ I really enjoyed the python WordCloud module, so I wanted to give it a GUI so I could share it with family and friends. …
1 vote
Generating complementary DNA sequence
I know this is old, but considering the amount of views it gets (and I also looked it up now) thought I'd also add. Couldn't you just use a dictionary, and convert all letters to upper (this way you d …
8 votes
3 answers
805 views
Modifying Titration Data analysis results
This is my first script that I've written. As a result, I'm sure there are extra lines that are unneeded, or maybe better more concise ways of doing things than I have done here. I have tried to add e …