I have a pipeline of scripts that together produce different plots to describe some properties of genes involved in the same pathway.
For the moment, I execute them locally through a Makefile. The only thing that I have to do is to fill a list of genes in a file, and then call the main function, and it will automatically generate some graphs and tables on them.
I wonder, how can I translate this pipeline in a web application? I already have the scripts, I just need a way to create a web page where an user can upload a list of files and then download the results.
I have some experience with django and the earlier plone, but so much time has passed and I forgot how to use them... how would you implement it? By the way, is there any special framework for bioinformatics-related stuff? Or are there any special rules or standards that I should follow in order to integrate a web application with other bioinformatics-related services?
that's how I managed all of my various tools. Now every script becomes a galaxy tool from the start. This makes it easier to join projects and share data. I also makes it easier to work with collaborators because I can just point them to a saved history on my own instance. I can also check the logs to see if they actually looked at it before complianing ;)
Thank you very much: in fact, I was looking for something in the style of galaxy. Let's see what other options come up with this thread.