stitch

Template-based assembly of proteomics short reads for de novo antibody sequencing and repertoire profiling

https://github.com/snijderlab/stitch

Science Score: 39.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 1 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.9%) to scientific vocabulary

Keywords

antibody mass-spectrometry sequencing
Last synced: 6 months ago · JSON representation

Repository

Template-based assembly of proteomics short reads for de novo antibody sequencing and repertoire profiling

Basic Info
  • Host: GitHub
  • Owner: snijderlab
  • License: mit
  • Language: C#
  • Default Branch: master
  • Homepage:
  • Size: 82.3 MB
Statistics
  • Stars: 25
  • Watchers: 1
  • Forks: 3
  • Open Issues: 24
  • Releases: 15
Topics
antibody mass-spectrometry sequencing
Created about 4 years ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog License Citation

README.md

Stitch

Template-based assembly of proteomics short reads for de novo antibody sequencing and repertoire profiling.

Getting started

There are distributed executable files for windows (x64, arm64), linux (x64, arm64) and mac (x64, arm64). If you use any other platform the see 'Building'. To use these first download the latest package, found on the releases page. Unpack the archive for your system and run the files from the command line with the filename of the batch file to be used.

Windows: .\stitch.exe run batchfiles\monoclonal.txt (x64) .\stitch_arm.exe run batchfiles\monoclonal.txt (arm64)

Linux: ``` (x64, should work on most distros) chmod +x ./stitch.bin (give running permission to the binary) ./stitch.bin run batchfiles/monoclonal.txt

(arm64) chmod +x ./stitcharm (give running permission to the binary) ./stitcharm run batchfiles/monoclonal.txt ```

OSX: ``` (x64, minimum version macOS 10.12 Sierra) chmod +x ./stitch.bin (give running permission to the binary) ./stitch run batchfiles/monoclonal.txt

(arm64, minimum version macOS 11.0 Big Sur) chmod +x ./stitcharm (give running permission to the binary) ./stitcharm run batchfiles/monoclonal.txt ```

For help creating batch files see manual.pdf, this is can be found on the same page.

Different versions

Releases can be found on the releases page. Nightly versions, which contain all new features but are less stable, can be found on the action page.

Building

First retrieve the source code using git clone.

git clone https://github.com/snijderlab/stitch.git stitch

The project is built with dotnet (.NET 7.0) development is done on windows, but it should work on all major platforms. To run the project on your own machine (not using precompiled binaries for linux or windows x64) install dotnet, stay in this folder (the root) and run:

dotnet run --project stitch <path to batchfile>

It will warn you that the assets folder is missing, this can be fixed by creating a symbolic link (mklink for windows cmd) from the folder in which the dll will be placed (stitch\bin\Debug\net7.0\) called assets to .\assets.

mklink /J stitch\bin\debug\net7.0\assets\ assets\ mklink /J stitch\bin\debug\net7.0\images\ images\ mklink /J stitch\bin\release\net7.0\assets\ assets\ mklink /J stitch\bin\release\net7.0\images\ images\

ln -s assets stitch/bin/debug/net7.0/assets ln -s images stitch/bin/debug/net7.0/images ln -s assets stitch/bin/release/net7.0/assets ln -s images stitch/bin/release/net7.0/images

To generate a single executable run:

dotnet publish stitch -c release -r [target] --self-contained

The target name should then be a valid 'RID' for the platform you choose. But if this is omitted it will default to windows x64. See this site for information about RIDs.

Testing

There are some unit tests provided. These can be found in the 'tests' folder. To run the unit tests run (from the root folder):

dotnet test tests

Examples

The 'batchfiles' folder contains some examples which can be run to see what the program is up to. These examples are present both with the built binaries and the source code.

  • basic.txt
  • monoclonal.txt
  • polyclonal.txt

The 'benchmarks' folder contains a set of examples with a known output which are used to benchmark the program continuously. The description of these examples can be found using the following doi 10.1021/acs.jproteome.1c00913.

Credits

  • Douwe Schulte - Software engineer - d.schulte{at}uu{dot}nl
  • Joost Snijder - Principal investigator
  • Bastiaan de Graaf - Code reviews
  • Wei Wei Peng - Testing and analysis

Acknowledgements

Dependencies

  • Hecklib core, public nuget package see nuget.config for more info on the exact url
  • Stitch assets git submodule, contains the css and js to make the html report shine. A separate submodule to simplify reuse of these files.

License

MIT License (see LICENSE.md)

Owner

  • Name: snijderlab
  • Login: snijderlab
  • Kind: organization
  • Location: Netherlands

Research lab under @joostsnijder at the @UtrechtUniversity.

GitHub Events

Total
  • Issues event: 16
  • Watch event: 3
  • Issue comment event: 18
Last Year
  • Issues event: 16
  • Watch event: 3
  • Issue comment event: 18

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 100
  • Total pull requests: 2
  • Average time to close issues: 3 months
  • Average time to close pull requests: less than a minute
  • Total issue authors: 15
  • Total pull request authors: 1
  • Average comments per issue: 2.4
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 10
  • Pull requests: 0
  • Average time to close issues: 9 days
  • Average time to close pull requests: N/A
  • Issue authors: 5
  • Pull request authors: 0
  • Average comments per issue: 1.7
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • douweschulte (69)
  • irleader (7)
  • kostrouc (5)
  • biocc (3)
  • Ln9052 (2)
  • MengTingHe2023 (2)
  • wenjinwu1985 (2)
  • avilella (2)
  • oatmealcookie8 (1)
  • huangli1219 (1)
  • sbeausol (1)
  • kkim89 (1)
  • huyoyo2001 (1)
  • pikiton (1)
  • JoergDoellinger (1)
Pull Request Authors
  • douweschulte (2)
Top Labels
Issue Labels
C-enhancement (26) A-html-report (25) M-user-question (12) M-possible-scoring-change (12) A-batchfile (10) C-bug (8) M-unrefined-idea (8) M-needs-investigation (5) A-ms (3) M-wild-idea (3) A-alignment (2) A-templates-generation (2) M-priority (2) A-structural (2) K-refactor (2) C-crash (1) A-github-actions (1) A-phylogenetic-tree (1)
Pull Request Labels

Dependencies

.github/workflows/benchmark.yml actions
  • actions/checkout v2 composite
  • actions/setup-dotnet v3 composite
  • benchmark-action/github-action-benchmark v1 composite
.github/workflows/check.yml actions
  • actions/checkout v2 composite
  • actions/setup-dotnet v3 composite
.github/workflows/deploy.yml actions
  • actions/checkout v2 composite
  • actions/setup-dotnet v3 composite
  • actions/upload-artifact v2 composite
  • docker://pandoc/latex 2.9 composite
stitch/stitch.csproj nuget
  • hecklib.core 2.5.*
  • hecklib.html_generator 0.0.14
  • hecklib.rawfiles.mgf 6.0.*
tests/tests.csproj nuget
  • MSTest.TestAdapter 1.4.0
  • MSTest.TestFramework 1.4.0
  • Microsoft.NET.Test.Sdk 16.2.0
  • coverlet.collector 1.0.1