Giter VIP home page Giter VIP logo

Comments (11)

abhi18av avatar abhi18av commented on August 28, 2024 2

Congrats to @emilio-r ! 🎉

from bactpipe.

abhi18av avatar abhi18av commented on August 28, 2024 1

We might have to see if it works with path objects instead of file (i.e. reads[0].size())

We could rely on toFile method for a java Path object.

Though, I think it'd be best if we encapsulate this functionality into a function or a closure in Groovy.

The final solution would look something like

  time computeTime()

from bactpipe.

thorellk avatar thorellk commented on August 28, 2024 1

from bactpipe.

boulund avatar boulund commented on August 28, 2024

It would be nice if we could decouple the environment specifications from the time specifications somehow. We would encounter the same issue in the gandalf config as well if we had such large input files, and it feels like it could quickly get messy if we need to keep multiple versions of each system profile.

from bactpipe.

abhi18av avatar abhi18av commented on August 28, 2024

Hello team,

I am not sure how the cluster environments work, but perhaps we could explore computing the time limit dynamically?

Something like (pseudocode)

time   =  20.m   *  task.attempt

from bactpipe.

thorellk avatar thorellk commented on August 28, 2024

Yeah, that would be an alternative @abhi18av, if one can make some benchmark how much time it needs per 100 Mb input file or something. It should "only" be fastp, shovill and Kraken that will be affected by input file size...

from bactpipe.

boulund avatar boulund commented on August 28, 2024

I think it should be possible to implement it so it actually reads the size of the input file for the process and computes the time allocation based on that. I think that, perhaps in combination with an extension on failures, would make sense and make it more effective. The alternative that has been proposed already would unnecessarily spend core hours for users with mainly (too) large samples on failed attempts that would then be increased only after failing.

from bactpipe.

abhi18av avatar abhi18av commented on August 28, 2024

Hi team,

I came across this possible solution somewhere else and perhaps we could explore this here

  time { 20.m * sample.size() }

from bactpipe.

boulund avatar boulund commented on August 28, 2024

Neat. I wasn't aware of that functionality!

I guess we would need to make some simple calculation using the sample size to come up with a good multiplier for the time, perhaps also modulo some value so we don't end up with weird allocation request. There should also be a minimum size allocation as well I think :). Can you guys help me come up with something that would make sense? I'm thinking a "normal" sample would result in a time allocation of 20.m (i.e. the multiplier would be 1), but larger samples would increase in whole integer steps depending on the size of the sample file to 20.m * 2 (medium sized file), 20.m * 3 (large file) etc.

Not sure if sample.size() would work in our context, as there is no object in the FASTP process definition called sample. We might have to see if it works with path objects instead of file (i.e. reads[0].size()), or consider rewriting the process definition slightly to use file instead of path.

from bactpipe.

boulund avatar boulund commented on August 28, 2024

Would someone have time to prototype something around this?

from bactpipe.

abhi18av avatar abhi18av commented on August 28, 2024

I think that the function should look something like this, however I can't think of a way I can test this on my infra.

def computeTime (inputPathObject) {
    fileObject = inputPathObject.toFile()
    fileSize = fileObject.size()
    factor = fileSize % 3

    if(factor == 0) {
      return 20.m
    }

    return 20.m * factor
}

This function might need to be adapted based on the test runs.

from bactpipe.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.