SlideShare a Scribd company logo
Agile Analysis
Pipeline
Andy Brown
New Pipeline Development
Who Are We?
Who Are We?
One of the world's largest DNA
Sequencing Centres
Second largest compute centre after
CERN in Europe
What Do We Do?
Human, Mouse, Zebrafish and
Pathogen Genome Projects
Post sequencing analysis, annotation
and maintenance
(It's never truly finished!)
Who Am I?
Tracking systems and analysis pipeline
for Next Generation Sequencing
Technologies
Perl, Web Technologies, Moose
Next Generation Sequencing?
Massively Parallel DNA Sequencing
Producing Millions of Reads per run
~38 instruments
~5Tb of data a day
Managing quick turnaround on Staging
of 320Tb data a month
Analysis
Convert Images to Bases
Obtain quality values
Recalibrate quality
Separate up DNA sequences from
different projects
Do this in parallel
Be able to extend this
Analysis
Current analysis running script was
unable to cope with changing demands
What Did I Have?
Agile analysis development
A Brief
Run
Completes
Bustard
Adaptor
Removal
Split
by Tag
CIF
Qseq, Sig2
Split
by Tag
Calibrate
Scores
Index: rejectsIndex: rejects
Index: + tags
Split
by Tag
Split
by Tag
Split
by Tag
Create Cal
Table
Cal Table
Control Refs
Calibrate
Scores
Consent
Align
Index: + tags
Cal-Qseq
Consent
Align
K-mer Error
Correction
Cal-Qseq
Index: + consent
K-mer Error
Correction
K-mer Error
Correction
K-mer Error
Correction
K-mer Error
Correction
K-mer Error
Correction
Index: + consent
Index: + rejects
K-mer Error
Correction
K-mer Error
Correction
K-mer Error
Correction
Create Fastq
K-mer Error
Correction
K-mer Error
Correction
K-mer Error
Correction
Align to
Ref
Index: + rejects
Fastq
K-mer Error
Correction
K-mer Error
Correction
Create SRF
Control Refs
Sample Refs
Next
Page!
BAM
Initial Product
Creation
Initial Product
Creation
Gray boxes may
be pass-through
Control Refs
SRF
Sig2 Index fastq BAM
Run Summary (Summary.htm stuff)
IVC Plots
Q20 Counts
Fastqcheck
Insert Size Histogram
Error rates and QQ-Plots
Heatmaps
SNP Finder
... And Anything Else You Can Think Of
Human QC
Fuse
Archive
QC and Archival
Agile analysis development
Agile analysis development
Working in a Agile Manner
Current manner – still close to Cascade,
some idea of iterations
I wanted more agility – defined iterations
Got close
First Iteration - It1
Chop down the brief into stories
Spoke with creator of the brief, my boss
& team about what was needed
Pluggable, Automatic, Auto QC
It1: First bit of Coding
Read old code – anything I can steal –
yes!
Write some 'in principle' tests to get an
idea of the way to go.
Write some code for those tests.
It1: Prototype
Launch next
LaunchSelforFinish
LSF DEPENDENCIES
It1: Fail
Test Principle – Worked
Reality – Too Unwieldy
It1: Evaluation
Too much wrapping
Too much could go wrong with lots of parts
Out the Window!
Second Iteration - It2
So, I'm Agile. I don't see this as a set
back.
Opportunity to try a different approach.
I sketch it out.
Flag Waver
Function b Function c Function d Function eFunction a
Object to
Launch Ca
Object to
Launch Cb
Object to
Launch Cc
Object to
Launch Cd
Object to
Launch Ce
Component
a
Component
b
Component
c
Component
d
Component
e
It2: Second lot of Coding
Again, start off with in principle tests
Write some code to pass those tests
Select a bit of real world to apply it to
It2: Pass
This real world bit works
All jobs are launched as expected
Replace the old section with this bit
It still works :) A perfect replacement
It2: Evaluation
Success :)
The Flag Waver model - functions that
know what to do, but no knowledge of
other functions
This should make it pluggable
It2: Evaluation
Bulky data getting generated multiple
times over – Needs more DRYness
It3: Some new requests
It would be easier to code if we didn't
have users of the applications!
The first new request comes in for some
automated QC
Just launch them at the correct time
It3: Scrum
So, I scrum.
The objective: Work out priorities for
this iteration.
There are many 'stories', I decide on the
following.
It3: Scrum
Write something to make data
construction and passing more DRY
Write another replacement pipeline
section
Try to incorporate 1 QC into previous
pipeline section
It3: Tests
I write some tests to assess launching
the analysis pipeline
I write some tests to incorporate a QC
launch into the post analysis pipeline
I run the tests, which fail
It3: Code
I decide first to add the QC launch
My boss wants to start getting the data
I get a quick view of how pluggable the
system actually is
It is good :)
It3: Code
The analysis guys want their pipeline to
start showing up
Good reason - a new version of the
scripts have appeared, and they don't
want to patch the old
This takes the rest of the iteration
It3: Release
The most important release so far
Completely replace old code with new
Took about 2 days, with bug fixing
It3: Evaluation
Bugs on Release - tests don't always
prove everything!
No time to DRY out the code
Successful product into production
Old code has gone to 'silicon heaven'
It4: Scrum
I again scrum
So far, iterations have been quite quick
In order for some time to pass for the
pipeline, I decide to do refactoring this
time
It4: Scrum
Utilising more Inheritance (using Moose
Roles)
Create external role to translate
attributes without building hashes each
time
It4: In Brief
After 2 weeks
» a nicely refactored pipeline
» external role to DRY out data (released to
CPAN)
» time to have monitored how the pipeline
was running
Release and go
The next few iterations
Iterations continue, releasing every 2-3
weeks :)
Until it all broke :(
The Broken Pipeline Iteration
Up until now, the pipeline had been
behaving itself.
New analysis code came from our
supplier, our R&D team would test, then
I would throw the switch and release.
The Broken Pipeline Iteration
However, they changed something we
didn't find in testing.
Runs with multiplexed lanes broke, as
they have an extra 'barcode' read
The Broken Pipeline Iteration
Luckily, here is where being agile really
helped.
Whilst I had just 'scrummed' to decide
my priorities, I just dropped them
New Priority – Fix the Pipeline
The Broken Pipeline Iteration
Pluggable, so could a function or two be
moved to help?
Yes! 1 function move would halve the
problem.
Run on example – expected outcome
The Broken Pipeline Iteration
Now to fix the 3 read / 2 read problem
Again, write tests, test, code, test, run on
example, write tests for bugs, test, code,
test, run on example ....
End of this iteration, able to release a
fully fixed pipeline
The Broken Pipeline Iteration
Evaluation:
Being Agile, both in project management
and design, helped here.
How?
The Broken Pipeline Iteration
Design:
Plugin design of the pipeline - half the
problem was solved just by moving
something.
The other part just by writing a new
module.
It just worked!
The Broken Pipeline Iteration
Project Management:
Changing an iterations priorities so that
the urgently required fix could be
done...
...barely disrupting the flow of work on
feature requests
What has happened since?
Development has settled into a 2-3
week release cycle
Team knows development position
Made it easier for them to cover me
What else happened since?
Agile analysis development
Agile analysis development
Agile analysis development
Agile analysis development
Acknowledgements
David Jackson
Guoying Qi
John O'Brien
Marina
Gourtovaia
Sri Deevi
Tom Skelly
Irina Abnizova
Steve Leonard
Tony Cox
You
Contact Me!
http://software-east.net/profile/AndyBrown
setitesuk@gmail.com
http://vampiresoftware.blogspot.com
http://twitter.com/setitesuk
http://www.slideshare.net/setitesuk
http://github.com/setitesuk

More Related Content

PDF
TDD for APIs @ Europython 2015, Bilbao by Michael Kuehne
PPTX
How do you tame a big ball of mud? One test at a time.
PDF
Effective code reviews
DOCX
Test driven development and unit testing with examples in C++
PDF
Testing: ¿what, how, why?
PDF
Effective code reviews
PPT
Crowd debugging (FSE 2015)
PDF
All about PVS-Studio
TDD for APIs @ Europython 2015, Bilbao by Michael Kuehne
How do you tame a big ball of mud? One test at a time.
Effective code reviews
Test driven development and unit testing with examples in C++
Testing: ¿what, how, why?
Effective code reviews
Crowd debugging (FSE 2015)
All about PVS-Studio

What's hot (20)

PPT
Automated Regression Testing for Embedded Systems in Action
PPTX
PHPUnit - Unit testing
PDF
Automatic testing in DevOps
PPTX
Automatically Generated Patches as Debugging Aids: A Human Study (FSE 2014)
PPTX
PVS-Studio and static code analysis technique
PDF
Refactoring Legacy Code
ODP
When Good Code Goes Bad: Tools and Techniques for Troubleshooting Plone
PDF
PVS-Studio Has Finally Got to Boost
PPTX
Interpreter RPG to Java
PDF
Pragmatic Code Coverage
PDF
Testing distributed systems in production
PPTX
Ensuring Software Quality in the cloud
PPTX
Code Smells Part 1: Basic Smells
PDF
SophiaConf 2018 - P. Urso (Activeeon)
PPT
Test Presentation
PDF
Into The Box 2018 | Assert control over your legacy applications
PPTX
Unit & integration testing
PDF
PVS-Studio confesses its love for Linux
PPTX
What I Learned From Writing a Test Framework (And Why I May Never Write One A...
PPTX
Static Code Analysis: Keeping the Cost of Bug Fixing Down
Automated Regression Testing for Embedded Systems in Action
PHPUnit - Unit testing
Automatic testing in DevOps
Automatically Generated Patches as Debugging Aids: A Human Study (FSE 2014)
PVS-Studio and static code analysis technique
Refactoring Legacy Code
When Good Code Goes Bad: Tools and Techniques for Troubleshooting Plone
PVS-Studio Has Finally Got to Boost
Interpreter RPG to Java
Pragmatic Code Coverage
Testing distributed systems in production
Ensuring Software Quality in the cloud
Code Smells Part 1: Basic Smells
SophiaConf 2018 - P. Urso (Activeeon)
Test Presentation
Into The Box 2018 | Assert control over your legacy applications
Unit & integration testing
PVS-Studio confesses its love for Linux
What I Learned From Writing a Test Framework (And Why I May Never Write One A...
Static Code Analysis: Keeping the Cost of Bug Fixing Down
Ad

Viewers also liked (7)

ODP
Pluggable Pipelines
PPT
20120301 prezentacja slc niezbędnik właściciela sklepu internetowego
ODP
pipeline_structure_overview
PPT
Data Formats
ODP
Pomodoro lightning talk
PDF
Hype vs. Reality: The AI Explainer
PDF
Study: The Future of VR, AR and Self-Driving Cars
Pluggable Pipelines
20120301 prezentacja slc niezbędnik właściciela sklepu internetowego
pipeline_structure_overview
Data Formats
Pomodoro lightning talk
Hype vs. Reality: The AI Explainer
Study: The Future of VR, AR and Self-Driving Cars
Ad

Similar to Agile analysis development (20)

ODP
Passing The Joel Test In The PHP World
PPTX
A better faster pipeline for software delivery, even in the government
PPTX
Continuous delivery applied
PDF
Ncerc rlmca202 adm m3 ssm
PDF
End-to-end pipeline agility - Berlin Buzzwords 2024
PDF
Getting Ahead of Delivery Issues with Deep SDLC Analysis by Donald Belcham
PDF
Stop Sucking at Building Stuff!
PDF
Building Quality In in SAFe – The Testing Organization’s Perspective
PDF
Tool up your lamp stack
PDF
Tool Up Your LAMP Stack
PDF
High Performance Software Engineering Teams
PPTX
Continuous Delivery Applied (AgileDC)
PDF
Agile Software Development in practice: Experience, Tips and Tools from the T...
PDF
Agile & ALM tools
PDF
Jose Luis Soria - Codemotion 2014 - Designing a release pipeline
ODP
Timeboxed releases - Peter Antman
PPTX
Agile Chennai 2023 | Agile story with new age leadership and empiricism - She...
PDF
Bootstrapping Agile
PPTX
Continuous delivery applied (DC CI User Group)
PPTX
Continuous Delivery Applied
Passing The Joel Test In The PHP World
A better faster pipeline for software delivery, even in the government
Continuous delivery applied
Ncerc rlmca202 adm m3 ssm
End-to-end pipeline agility - Berlin Buzzwords 2024
Getting Ahead of Delivery Issues with Deep SDLC Analysis by Donald Belcham
Stop Sucking at Building Stuff!
Building Quality In in SAFe – The Testing Organization’s Perspective
Tool up your lamp stack
Tool Up Your LAMP Stack
High Performance Software Engineering Teams
Continuous Delivery Applied (AgileDC)
Agile Software Development in practice: Experience, Tips and Tools from the T...
Agile & ALM tools
Jose Luis Soria - Codemotion 2014 - Designing a release pipeline
Timeboxed releases - Peter Antman
Agile Chennai 2023 | Agile story with new age leadership and empiricism - She...
Bootstrapping Agile
Continuous delivery applied (DC CI User Group)
Continuous Delivery Applied

Recently uploaded (20)

PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Modernizing your data center with Dell and AMD
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPT
Teaching material agriculture food technology
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
cuic standard and advanced reporting.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
The AUB Centre for AI in Media Proposal.docx
Spectral efficient network and resource selection model in 5G networks
Reach Out and Touch Someone: Haptics and Empathic Computing
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Digital-Transformation-Roadmap-for-Companies.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
The Rise and Fall of 3GPP – Time for a Sabbatical?
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Modernizing your data center with Dell and AMD
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Teaching material agriculture food technology
NewMind AI Monthly Chronicles - July 2025
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
cuic standard and advanced reporting.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
MYSQL Presentation for SQL database connectivity
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf

Agile analysis development

  • 3. Who Are We? One of the world's largest DNA Sequencing Centres Second largest compute centre after CERN in Europe
  • 4. What Do We Do? Human, Mouse, Zebrafish and Pathogen Genome Projects Post sequencing analysis, annotation and maintenance (It's never truly finished!)
  • 5. Who Am I? Tracking systems and analysis pipeline for Next Generation Sequencing Technologies Perl, Web Technologies, Moose
  • 6. Next Generation Sequencing? Massively Parallel DNA Sequencing Producing Millions of Reads per run ~38 instruments ~5Tb of data a day Managing quick turnaround on Staging of 320Tb data a month
  • 7. Analysis Convert Images to Bases Obtain quality values Recalibrate quality Separate up DNA sequences from different projects Do this in parallel Be able to extend this
  • 8. Analysis Current analysis running script was unable to cope with changing demands
  • 9. What Did I Have?
  • 12. Run Completes Bustard Adaptor Removal Split by Tag CIF Qseq, Sig2 Split by Tag Calibrate Scores Index: rejectsIndex: rejects Index: + tags Split by Tag Split by Tag Split by Tag Create Cal Table Cal Table Control Refs Calibrate Scores Consent Align Index: + tags Cal-Qseq Consent Align K-mer Error Correction Cal-Qseq Index: + consent K-mer Error Correction K-mer Error Correction K-mer Error Correction K-mer Error Correction K-mer Error Correction Index: + consent Index: + rejects K-mer Error Correction K-mer Error Correction K-mer Error Correction Create Fastq K-mer Error Correction K-mer Error Correction K-mer Error Correction Align to Ref Index: + rejects Fastq K-mer Error Correction K-mer Error Correction Create SRF Control Refs Sample Refs Next Page! BAM Initial Product Creation Initial Product Creation Gray boxes may be pass-through
  • 13. Control Refs SRF Sig2 Index fastq BAM Run Summary (Summary.htm stuff) IVC Plots Q20 Counts Fastqcheck Insert Size Histogram Error rates and QQ-Plots Heatmaps SNP Finder ... And Anything Else You Can Think Of Human QC Fuse Archive QC and Archival
  • 16. Working in a Agile Manner Current manner – still close to Cascade, some idea of iterations I wanted more agility – defined iterations Got close
  • 17. First Iteration - It1 Chop down the brief into stories Spoke with creator of the brief, my boss & team about what was needed Pluggable, Automatic, Auto QC
  • 18. It1: First bit of Coding Read old code – anything I can steal – yes! Write some 'in principle' tests to get an idea of the way to go. Write some code for those tests.
  • 20. It1: Fail Test Principle – Worked Reality – Too Unwieldy
  • 21. It1: Evaluation Too much wrapping Too much could go wrong with lots of parts Out the Window!
  • 22. Second Iteration - It2 So, I'm Agile. I don't see this as a set back. Opportunity to try a different approach. I sketch it out.
  • 23. Flag Waver Function b Function c Function d Function eFunction a Object to Launch Ca Object to Launch Cb Object to Launch Cc Object to Launch Cd Object to Launch Ce Component a Component b Component c Component d Component e
  • 24. It2: Second lot of Coding Again, start off with in principle tests Write some code to pass those tests Select a bit of real world to apply it to
  • 25. It2: Pass This real world bit works All jobs are launched as expected Replace the old section with this bit It still works :) A perfect replacement
  • 26. It2: Evaluation Success :) The Flag Waver model - functions that know what to do, but no knowledge of other functions This should make it pluggable
  • 27. It2: Evaluation Bulky data getting generated multiple times over – Needs more DRYness
  • 28. It3: Some new requests It would be easier to code if we didn't have users of the applications! The first new request comes in for some automated QC Just launch them at the correct time
  • 29. It3: Scrum So, I scrum. The objective: Work out priorities for this iteration. There are many 'stories', I decide on the following.
  • 30. It3: Scrum Write something to make data construction and passing more DRY Write another replacement pipeline section Try to incorporate 1 QC into previous pipeline section
  • 31. It3: Tests I write some tests to assess launching the analysis pipeline I write some tests to incorporate a QC launch into the post analysis pipeline I run the tests, which fail
  • 32. It3: Code I decide first to add the QC launch My boss wants to start getting the data I get a quick view of how pluggable the system actually is It is good :)
  • 33. It3: Code The analysis guys want their pipeline to start showing up Good reason - a new version of the scripts have appeared, and they don't want to patch the old This takes the rest of the iteration
  • 34. It3: Release The most important release so far Completely replace old code with new Took about 2 days, with bug fixing
  • 35. It3: Evaluation Bugs on Release - tests don't always prove everything! No time to DRY out the code Successful product into production Old code has gone to 'silicon heaven'
  • 36. It4: Scrum I again scrum So far, iterations have been quite quick In order for some time to pass for the pipeline, I decide to do refactoring this time
  • 37. It4: Scrum Utilising more Inheritance (using Moose Roles) Create external role to translate attributes without building hashes each time
  • 38. It4: In Brief After 2 weeks » a nicely refactored pipeline » external role to DRY out data (released to CPAN) » time to have monitored how the pipeline was running Release and go
  • 39. The next few iterations Iterations continue, releasing every 2-3 weeks :) Until it all broke :(
  • 40. The Broken Pipeline Iteration Up until now, the pipeline had been behaving itself. New analysis code came from our supplier, our R&D team would test, then I would throw the switch and release.
  • 41. The Broken Pipeline Iteration However, they changed something we didn't find in testing. Runs with multiplexed lanes broke, as they have an extra 'barcode' read
  • 42. The Broken Pipeline Iteration Luckily, here is where being agile really helped. Whilst I had just 'scrummed' to decide my priorities, I just dropped them New Priority – Fix the Pipeline
  • 43. The Broken Pipeline Iteration Pluggable, so could a function or two be moved to help? Yes! 1 function move would halve the problem. Run on example – expected outcome
  • 44. The Broken Pipeline Iteration Now to fix the 3 read / 2 read problem Again, write tests, test, code, test, run on example, write tests for bugs, test, code, test, run on example .... End of this iteration, able to release a fully fixed pipeline
  • 45. The Broken Pipeline Iteration Evaluation: Being Agile, both in project management and design, helped here. How?
  • 46. The Broken Pipeline Iteration Design: Plugin design of the pipeline - half the problem was solved just by moving something. The other part just by writing a new module. It just worked!
  • 47. The Broken Pipeline Iteration Project Management: Changing an iterations priorities so that the urgently required fix could be done... ...barely disrupting the flow of work on feature requests
  • 48. What has happened since? Development has settled into a 2-3 week release cycle Team knows development position Made it easier for them to cover me
  • 54. Acknowledgements David Jackson Guoying Qi John O'Brien Marina Gourtovaia Sri Deevi Tom Skelly Irina Abnizova Steve Leonard Tony Cox You

Editor's Notes

  • #2: Intro myself Here to talk about the agile development process of the analysis pipeline I developed
  • #3: We are the Welcome Trust Sanger Institute. Here is a picture of our campius which is south of Cambridge in Hinxton
  • #4: We are one of the worlds largest DNA sequencing centres. Until fairly recently, the largest, but we have been overtaken in the last few years by some centres in America, and then the Chnese have blown all the competition away. We also have the largest compute centre in Europe after CERN. Biology has very much moved into the informatics domain, and unlike many other disciplines such as Physics, which have had the time to develop their compute infrastructure over the 15+yrs it takes to design the rest of the experiments, Biology has jumped such that we are sometimes lucky to get 1.5 motnhs.
  • #5: Originally set up to sequence 1 third of the Human Genome, we also worked on the Mouse Genome. We have also sequenced other organisms and Pathgens ourselves. We are also involved in the Post sequencing analysis, annotation and sequence maintenance. Contrary to popular belief, the sequences are never truly finished.
  • #6: I'm a software developer in a group responsible for producing the tracking systems and running the primary analysis pipeline for the Next Generation Sequencing Instruments. I mostly develop using Perl, Web Technologies and Moose
  • #7: What is Next Generation Sequencing. The Human Genome cost millions of dollars, and took around 15 years to complete. Very costly, as it used a sequencing techinique which just did a few strands of DNA at a time. NGS is Massively Parallel Sequencing of strads, sequenicng millions at a time. However, with approx 38 instruments, producing around 5Tb of data a day, that is a lot forus to deal with. We have a quick turnaround of 320Tb of data a month.
  • #8: Here is an outline of the primary amalysis requirements, which needs to be done within 2 weeks of the run completing on an instrument.
  • #9: Our current analysis pipeline running script was unable to cope with the changing demands.
  • #11: Time – I had a little bit of time to look at how to approach this, and the best way to structure it
  • #12: A suggestion of what the whole pipeline would be needed to do
  • #15: Vision, Ideas and Enthusiasm
  • #16: Desire to develop in a more agile way, even if the rest of my teams focus wasn't quite along with that
  • #17: We had always had visions of working in an agile manner, but in reality it was still quite close to cascade. We had tried to apply some idea of iterations, but it mostly meant I've done a feature, if no-one has objections, I'll release it. I wanted more than that, I wanted Agility ad the idea of defined iterations. I got close with this.
  • #18: For my first iteration, I decided to look at the brief, chop it down into manageable chunks or stories, and decide look at what we wanted, then prototype it I spoke with the creater of the brief (who had been running the previous script up until now), my boss and got some ideas from my team. We wanted something that was pluggable, automatic, and would be able to produce some QC.
  • #19: So, in my first bout of coding, I started by reading the old, and now convoluted, script. Mostly looking for anything I could steal for a prototype. I wrote some tests of how I wanted it to work. I then worte my prototype
  • #20: I had heard of someone elses pipeline which involved a daemon running constantly, polling for finished jobs beofre launching the next. We had already decicded that this was not that feasible for us, since it would involve too much overhead of a daemon per run, approx 5 new daemons per day. I hit upon an idea of a script which would Know the order to launch jobs Know which job had just been launched – via a command line parameter Launch the next job Launch itself, with the state, and a dependency on the previous job, to feed through to launch the next, or just finish
  • #21: In principle, it worked. However, in reality it was an epic fail, It got too unwieldywith more that parts, and that was before we wanted to parallise jobs
  • #22: Also it had too much wrapping code, dealing with processing what had gone before it. We decided that just too much could go wrong with it. So we threw it out of the window.
  • #23: Part of being agile is not to worry. I had only spent a week on this, so don't see it as a set back. It was a prototype, and a first attempt. I learmt from it. This surprised my boss, since I'm normally quite particlular about my work, and I don't like things going wrong. Well, unless I deliberately plan it that way. I spent 3 weeks trying to prove that for us, message queues miight be unreliable, and finally did. I took this as a chance to try a different approach. I sketched it out.
  • #24: This approach got termed the flag waver. A central function would launch in turn smaller functions which would call out to objects. Those objects would know how to launch other programs from the pipeline, and would only feedback the minimal amount of information required to launch the next one. Using lsf, this would only need to be the job ids of the launched programs, which would then be used as job requirements for the next launched job. This fitted nicely with the idea of it being pluggable, as the different functions should be loosely coupled. The order might be important a before b, but it might not matter if c got put in between them.
  • #25: With this idea, I got back on coding. I write some in principle test, and some code to pass those tests. I then try it on some real world to see it it still is ok, as before.
  • #26: This time the real world works! All my jobs launch and go through an example as expected. I replace the old section I had taken (some post analysis analysis) and actually install it. WooHoo, it is a perfect replacement.
  • #27: Evaluating again – success! I now have a model which is loosely coupled enough to make it pluggable – I hope. I'm also happy enough with this as a prototype to move it into a production scale framework
  • #28: However, I notice something about the way the functions are getting called. Some data is in the form of bulky hashrefs, and geneated multiple times over
  • #51: My boss and other team members have read some of my books
  • #52: We scrum daily
  • #53: Sprints and feature requests are tracked using RT
  • #54: Our productivity has increased