{"id":41443695,"url":"https://github.com/cellgeni/bsubs","last_synced_at":"2026-01-23T14:59:27.688Z","repository":{"id":255334800,"uuid":"849265442","full_name":"cellgeni/bsubs","owner":"cellgeni","description":"LSF Submission examples","archived":false,"fork":false,"pushed_at":"2024-09-12T00:51:39.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-10T04:57:31.970Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cellgeni.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-29T09:31:54.000Z","updated_at":"2024-09-12T00:51:42.000Z","dependencies_parsed_at":"2024-08-29T11:12:12.918Z","dependency_job_id":"03e1e67e-be80-4717-a51b-2cf809144fe1","html_url":"https://github.com/cellgeni/bsubs","commit_stats":null,"previous_names":["cellgeni/bsubs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cellgeni/bsubs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cellgeni%2Fbsubs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cellgeni%2Fbsubs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cellgeni%2Fbsubs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cellgeni%2Fbsubs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cellgeni","download_url":"https://codeload.github.com/cellgeni/bsubs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cellgeni%2Fbsubs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28694459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T14:15:13.573Z","status":"ssl_error","status_checked_at":"2026-01-23T14:09:05.534Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-23T14:59:27.247Z","updated_at":"2026-01-23T14:59:27.678Z","avatar_url":"https://github.com/cellgeni.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Example LSF script submissions\n\nLSF (Load Sharing Facility) at Sanger Institute.\nLSF is the workload management platform, job scheduler, for distributed high performance computing owned by IBM used by the Sanger Institute. The software coordinates the execution of multiple jobs on the FARM. Its primary function is to efficiently allocate available resources to incoming jobs based on various scheduling policies.\n\n# How to submit?\n\nAll scripts are bash scripts with `#BSUB` notation. To submit them as jobs use the following command:\n\n```\nbsub \u003c myjob.lsf\n```\n\n## Converting to bsub inline command\n\nJust copy the options for `#BSUB` tags from the file to an inline command.\n\nFor example:\n```\n#!/bin/bash\n#BSUB -q normal                                     # name of the queue gpu-lotfollahi\n#BSUB -M 8G                                         # 8G RAM memory\n#BSUB -R \"select[mem\u003e8G] rusage[mem=8G]\"            # same as above\n#BSUB -o logs/%J.out                                # output file\n#BSUB -e logs/%J.err                                # error file\n#BSUB -n 4                                          # number of cores in total\n\n[code here]\n```\n\nTurns to\n```\nbsub -q normal \\\n    -M 8G -R \"select[mem\u003e8G] rusage[mem=8G]\" \\\n    -o logs/%J.out \\\n    -e logs/%J.err \\\n    -n 4 \\\n    /path/to/your/script.sh\n```\n\nWhere `[code here]` is placed inside `/path/to/your/script.sh`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcellgeni%2Fbsubs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcellgeni%2Fbsubs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcellgeni%2Fbsubs/lists"}