The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
33 views

Specific bioinformatics research uses for Galaxy

I am a new user to Galaxy and wanted to know from Galaxy users what are the TOP uses for Galaxy! I'm looking for the specific research analysis tools you use. I know Galaxy is an excellent way to ...
13
votes
1answer
1k views

What is an idiomatic way of representing enums in golang?

I'm trying to represent a simplified chromosome, which consists of N bases, each of which can only be one of {A, C, T, G}. I'd like to formalize the constraints with an enum, but I'm wondering what ...
2
votes
0answers
172 views

how to plot multiple histograms on the same graph from multiple DNA distance files?

I have 100 fasta files and I would like to plot overlapping histograms of genetic distance matrix to see how much overlap there is between bootstrap replicates of DNA data? I have figured out how to ...
1
vote
0answers
227 views

SAS PROC MIXED -infinite likelihood program error when calculating genetic covariance components [closed]

I am trying to estimate covariance components from PROC MIXED and having trouble with convergence problems in the REML approach when I use the NOBOUNDS option. Let me explain why I am using NOBOUNDS ...
1
vote
0answers
194 views

R WGCNA Cytoscape hub genes

I have the following problem with WGCNA - http://labs.genetics.ucla.edu/horvath/htdocs/CoexpressionNetwork/Rpackages/WGCNA/Tutorials/ Working on Section 1.6, Export of networks to external software ...
3
votes
2answers
97 views

Population genetics modelling in python

so I need to make a program that generates generations of random equally fit alleles of a theoretical organism with a single gene. I start with a list containing one mutated allele 2, and then I ...
2
votes
1answer
62 views

Conditional Insert of Rows

I have a unique dataset, a portion of which can be reproduced using: data <- textConnection("SNP_Pres,Chr_N,BP_A1F,A1_Beta,A2_SE,ForSortSNP,SortOrder rs122,13,100461219,C,T,rs122,6 ...
1
vote
2answers
191 views

Merge by Range in R - Applying Loops

I posted a question here: Matched Range Merge in R about merging two files based on a number in one file falling into a range in the second file. Thus far, I have been unsuccessful in piecing together ...
1
vote
2answers
102 views

Python script to make basic file with chromosome information

I am trying to make some .bed files for genetic analysis. I am a python beginner. The files I want to make should be 3 columns, tab seperated, first column always the same (chromosome number) and 2nd ...
0
votes
1answer
296 views

Package ‘GeneR’ is not available

I'm trying to install GeneR library (http://www.bioconductor.org/packages/release/bioc/html/GeneR.html): I'm using win7 and the newest R 2.14.2. Error during installation: > ...
2
votes
1answer
293 views

How can I select human miRNA from affy chip while analyzing data using R?

I am new to R and want to analyze miRNA expression from a data set of 3 groups. Can anyone help me out. In this case I got other miRNAs(on affy chips) as top expressed genes. Now I want to select ...
0
votes
1answer
240 views

How to map a list of SNPs to genes?

I have been searching the answer to this question for a while. It seemed like it would not be hard to solve at first, but it seems quite challenging now. I am searching for a way to submit a list of ...
0
votes
1answer
82 views

Python calling mutiple URLs and pulling data from them

I'm trying to write a script that will call up a webpage (http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Tree&id=7742&lvl=3&lin=f&keep=1&srchmode=1&unlock), scan ...
2
votes
8answers
192 views

Syntaxless programming language [closed]

This is probably a very strange question, and it definitely is. I'm not too familiar on how programming languages are made with conventional methods, so I'm wondering, is it possible to design a ...
1
vote
2answers
267 views

Genetic Programming help

I need some guidance on a java project. I'm to develop a human genetic(family) tree. This is the subject: Each human cell contains 23 pairs of chromosomes numbered from 1 to 22,and a pair of sex ...
1
vote
1answer
494 views

SQLite - Are there alternatives to rtree for indexing lines on an axis?

I'm trying to make a database of positions with a start and stop: basically lines on a 1D axis. I want to efficiently query all positions that overlap a given interval. In a traditional table, the ...
1
vote
3answers
1k views

DNA sequence alignement in native Python (no biopython)

I have an interesting genetics problem that I would like to solve in native Python (nothing outside the standard library). This in order for the solution to be very easy to use on any computer, ...
0
votes
2answers
69 views

Somehow not assigning a class with Ruby

On runtime, my code often come into an undefined method error for the method mate. As far as I can figure, a Person somehow slips through the cracks sometime along the code's exucution, and manages ...
5
votes
3answers
650 views

Genetic Engineering simulation

Does anybody have any good source of software/tutorial about Genetic Engineering Simulation? Maybe open source software about gene splicing / cloning simulation ? Thanks
4
votes
2answers
776 views

Writing a GUI for the BRCAPRO Cancer Gene Risk Calculation Engine

I think this is a completely unique question on Stack Overflow. First some background: I've been asked to write a new GUI on top of a calculation engine called BRCAPRO (brack-a-pro). BRCAPRO ...