Compare commits
No commits in common. "8ffa86a965906b2be10329348b738211f9d4b40a" and "ad8abcc4fcd48ac13b50ffca89abfea57b6ea665" have entirely different histories.
8ffa86a965
...
ad8abcc4fc
|
@ -1,13 +1,6 @@
|
||||||
* locigenesis
|
* locigenesis
|
||||||
|
|
||||||
locigenesis is a tool that generates a human T-cell receptor (TCR), runs it through a sequence reader simulation tool and extracts CDR3.
|
locigenesis is a tool that generates an immune repertoire and runs it through a sequence reader simulation tool, to generate sequencing errors.
|
||||||
|
|
||||||
The goal of this project is to generate both HVR sequences with and without sequencing errors, in order to create datasets for a Machine Learning algorithm.
|
|
||||||
|
|
||||||
** Technologies
|
|
||||||
|
|
||||||
- [[https://github.com/GreiffLab/immuneSIM/][immuneSIM]]: in silico generation of human and mouse BCR and TCR repertoires
|
|
||||||
- [[http://www.pegase-biosciences.com/curesim-a-customized-read-simulator/][CuReSim]]: read simulator that mimics Ion Torrent sequencing
|
|
||||||
|
|
||||||
** Installation
|
** Installation
|
||||||
|
|
||||||
|
|
12
shell.nix
12
shell.nix
|
@ -21,10 +21,16 @@ let
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -pv $out/share/java $out/bin
|
mkdir -pv $out/share/java $out/bin
|
||||||
cp -r ${src} $out/share/java/${name}
|
cp -r ${src} $out/share/java/${name}
|
||||||
makeWrapper ${jre}/bin/java $out/bin/CuReSim --add-flags "-jar $out/share/java/${name}/${name}.jar"
|
makeWrapper ${pkgs.jdk}/bin/java $out/bin/CuReSim --add-flags "-jar $out/share/java/${name}/${name}.jar"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in mkShell {
|
in mkShell {
|
||||||
buildInputs =
|
buildInputs = [
|
||||||
[ R rPackages.immuneSIM rPackages.Biostrings rPackages.stringr CuReSim ];
|
R
|
||||||
|
rPackages.immuneSIM
|
||||||
|
rPackages.Biostrings
|
||||||
|
rPackages.stringr
|
||||||
|
jdk
|
||||||
|
CuReSim
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue