For a given sample name this will search the available sources and load it if it is available. Returns the first loaded node.
(sampleName)
| 48 | |
| 49 | |
| 50 | def downloadSample(sampleName): |
| 51 | """For a given sample name this will search the available sources |
| 52 | and load it if it is available. Returns the first loaded node. |
| 53 | """ |
| 54 | return SampleDataLogic().downloadSamples(sampleName)[0] |
| 55 | |
| 56 | |
| 57 | def downloadSamples(sampleName): |
nothing calls this directly
no test coverage detected