├── .gitignore
├── LICENSE-2.0.txt
├── README.md
├── README.txt
├── compomics-utilities.ico
├── docs
└── javadoc
│ ├── com
│ └── compomics
│ │ └── util
│ │ └── experiment
│ │ └── identification
│ │ └── protein_inference
│ │ └── fm_index
│ │ ├── FMIndex.html
│ │ ├── Rank.html
│ │ ├── WaveletTree.html
│ │ └── package-tree.html
│ ├── index-all.html
│ ├── overview-tree.html
│ └── serialized-form.html
├── exampleFiles
├── PeptideMapping
│ ├── yeast-pep-1k.csv
│ ├── yeast-tag-1k.csv
│ └── yeast.fasta
├── exampleChromatogram.txt
├── exampleSpectrumA.pkl
├── exampleSpectrumB.pkl
└── experiment
│ ├── enzymes.xml
│ ├── glycons.xml
│ ├── mods.xml
│ ├── reporterMethods.xml
│ └── usermods.xml
├── nb-configuration.xml
├── nbactions.xml
├── pom.xml
├── resources
└── conf
│ ├── gene_mappings
│ ├── ensembl_versions
│ ├── go_domains
│ ├── hsapiens_gene_ensembl_gene_mappings
│ ├── hsapiens_gene_ensembl_go_mappings
│ ├── sscrofa_gene_ensembl_gene_mappings
│ └── sscrofa_gene_ensembl_go_mappings
│ └── taxonomy
│ ├── ensembl_all_species
│ ├── ensembl_biomart_databases
│ └── uniprot_species
└── src
├── main
├── assembly
│ └── zip.xml
├── java
│ └── com
│ │ └── compomics
│ │ ├── cli
│ │ ├── enzymes
│ │ │ ├── EnzymesCLI.java
│ │ │ ├── EnzymesCLIInputBean.java
│ │ │ ├── EnzymesCLIParams.java
│ │ │ └── package.html
│ │ ├── fasta
│ │ │ ├── FastaParametersCLIParams.java
│ │ │ ├── FastaParametersInputBean.java
│ │ │ └── package.html
│ │ ├── identification_parameters
│ │ │ ├── AbstractIdentificationParametersCli.java
│ │ │ ├── IdentificationParametersCLI.java
│ │ │ ├── IdentificationParametersCLIParams.java
│ │ │ ├── IdentificationParametersInputBean.java
│ │ │ └── package.html
│ │ ├── modifications
│ │ │ ├── ModificationsCLI.java
│ │ │ ├── ModificationsCLIInputBean.java
│ │ │ ├── ModificationsCLIParams.java
│ │ │ └── package.html
│ │ ├── package.html
│ │ ├── paths
│ │ │ ├── PathSettingsCLI.java
│ │ │ ├── PathSettingsCLIInputBean.java
│ │ │ ├── PathSettingsCLIParams.java
│ │ │ └── package.html
│ │ └── peptide_mapper
│ │ │ ├── MappingWorker.java
│ │ │ ├── PeptideMapperCLI.java
│ │ │ └── package.html
│ │ ├── scripts_marc
│ │ ├── Dummy.java
│ │ └── MsFilePerformance.java
│ │ ├── software
│ │ ├── CompomicsWrapper.java
│ │ ├── SplashScreen.java
│ │ ├── ToolFactory.java
│ │ ├── autoupdater
│ │ │ ├── CompareVersionNumbers.java
│ │ │ ├── DownloadLatestZipFromRepo.java
│ │ │ ├── FileDAO.java
│ │ │ ├── GUIFileDAO.java
│ │ │ ├── HeadlessFileDAO.java
│ │ │ ├── JarFileFilter.java
│ │ │ ├── MavenJarFile.java
│ │ │ ├── MetaDataXMLParser.java
│ │ │ ├── WebDAO.java
│ │ │ └── package.html
│ │ ├── cli
│ │ │ ├── CommandLineUtils.java
│ │ │ ├── CommandParameter.java
│ │ │ └── package.html
│ │ ├── dialogs
│ │ │ ├── JavaHomeDialog.form
│ │ │ ├── JavaHomeDialog.java
│ │ │ ├── JavaHomeOrMemoryDialogParent.java
│ │ │ ├── JavaMemoryDialog.form
│ │ │ ├── JavaMemoryDialog.java
│ │ │ ├── JavaParametersDialog.form
│ │ │ ├── JavaParametersDialog.java
│ │ │ ├── PeptideShakerSetupDialog.form
│ │ │ ├── PeptideShakerSetupDialog.java
│ │ │ ├── ProteoWizardSetupDialog.form
│ │ │ ├── ProteoWizardSetupDialog.java
│ │ │ ├── ReporterSetupDialog.form
│ │ │ ├── ReporterSetupDialog.java
│ │ │ ├── SearchGuiSetupDialog.form
│ │ │ ├── SearchGuiSetupDialog.java
│ │ │ └── package.html
│ │ ├── log
│ │ │ ├── CliLogger.java
│ │ │ └── package.html
│ │ ├── package.html
│ │ └── settings
│ │ │ ├── PathKey.java
│ │ │ ├── UtilitiesPathParameters.java
│ │ │ ├── gui
│ │ │ ├── PathParametersDialog.form
│ │ │ ├── PathParametersDialog.java
│ │ │ └── package.html
│ │ │ └── package.html
│ │ └── util
│ │ ├── AlternateRowColoursJTable.java
│ │ ├── ArrayUtil.java
│ │ ├── BinaryArrayImpl.java
│ │ ├── CompareVersionNumbers.java
│ │ ├── Export.java
│ │ ├── StreamUtil.java
│ │ ├── TempByteArray.java
│ │ ├── Util.java
│ │ ├── XYZDataPoint.java
│ │ ├── db
│ │ ├── ColumnTypeConverter.java
│ │ ├── DBAccessor.java
│ │ ├── DBAccessorGenerator.java
│ │ ├── DBMetaData.java
│ │ ├── DBResultSet.java
│ │ ├── GeneratorException.java
│ │ ├── components
│ │ │ ├── Constructors.java
│ │ │ ├── DeleteableCode.java
│ │ │ ├── GettersAndSetters.java
│ │ │ ├── InstanceVariables.java
│ │ │ ├── PersistableCode.java
│ │ │ ├── RetrievableCode.java
│ │ │ ├── UpdateableCode.java
│ │ │ └── package.html
│ │ ├── interfaces
│ │ │ ├── DBElement.java
│ │ │ ├── Deleteable.java
│ │ │ ├── Persistable.java
│ │ │ ├── Retrievable.java
│ │ │ ├── Updateable.java
│ │ │ └── package.html
│ │ ├── object
│ │ │ ├── DbMutex.java
│ │ │ ├── ObjectsCache.java
│ │ │ ├── ObjectsDB.java
│ │ │ ├── objects
│ │ │ │ ├── BlobObject.java
│ │ │ │ └── package.html
│ │ │ └── package.html
│ │ └── package.html
│ │ ├── enumeration
│ │ ├── CompomicsTools.java
│ │ ├── ImageType.java
│ │ ├── MolecularElement.java
│ │ ├── OperatingSystemEnum.java
│ │ └── package.html
│ │ ├── examples
│ │ ├── BareBonesBrowserLaunch.java
│ │ ├── HelpWindow.form
│ │ ├── HelpWindow.java
│ │ ├── MirroredSpectraTestDialog.form
│ │ ├── MirroredSpectraTestDialog.java
│ │ ├── UtilitiesDemo.form
│ │ ├── UtilitiesDemo.java
│ │ └── package.html
│ │ ├── exceptions
│ │ ├── ExceptionHandler.java
│ │ ├── exception_handlers
│ │ │ ├── CommandLineExceptionHandler.java
│ │ │ ├── FrameExceptionHandler.java
│ │ │ ├── WaitingDialogExceptionHandler.java
│ │ │ └── package.html
│ │ └── package.html
│ │ ├── experiment
│ │ ├── Constants.java
│ │ ├── ProjectParameters.java
│ │ ├── biology
│ │ │ ├── aminoacids
│ │ │ │ ├── AminoAcid.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── Alanine.java
│ │ │ │ │ ├── Arginine.java
│ │ │ │ │ ├── Asparagine.java
│ │ │ │ │ ├── AsparticAcid.java
│ │ │ │ │ ├── B.java
│ │ │ │ │ ├── Cysteine.java
│ │ │ │ │ ├── GlutamicAcid.java
│ │ │ │ │ ├── Glutamine.java
│ │ │ │ │ ├── Glycine.java
│ │ │ │ │ ├── Histidine.java
│ │ │ │ │ ├── Isoleucine.java
│ │ │ │ │ ├── J.java
│ │ │ │ │ ├── Leucine.java
│ │ │ │ │ ├── Lysine.java
│ │ │ │ │ ├── Methionine.java
│ │ │ │ │ ├── Phenylalanine.java
│ │ │ │ │ ├── Proline.java
│ │ │ │ │ ├── Pyrrolysine.java
│ │ │ │ │ ├── Selenocysteine.java
│ │ │ │ │ ├── Serine.java
│ │ │ │ │ ├── Threonine.java
│ │ │ │ │ ├── Tryptophan.java
│ │ │ │ │ ├── Tyrosine.java
│ │ │ │ │ ├── Valine.java
│ │ │ │ │ ├── X.java
│ │ │ │ │ ├── Z.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── package.html
│ │ │ │ └── sequence
│ │ │ │ │ ├── AminoAcidPattern.java
│ │ │ │ │ ├── AminoAcidSequence.java
│ │ │ │ │ └── package.html
│ │ │ ├── atoms
│ │ │ │ ├── Atom.java
│ │ │ │ ├── AtomChain.java
│ │ │ │ ├── AtomImpl.java
│ │ │ │ ├── ElementaryElement.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── Calcium.java
│ │ │ │ │ ├── Carbon.java
│ │ │ │ │ ├── Chlorine.java
│ │ │ │ │ ├── Cobalt.java
│ │ │ │ │ ├── Copper.java
│ │ │ │ │ ├── Fluorine.java
│ │ │ │ │ ├── Helium.java
│ │ │ │ │ ├── Hydrogen.java
│ │ │ │ │ ├── Iodine.java
│ │ │ │ │ ├── Iron.java
│ │ │ │ │ ├── Lithium.java
│ │ │ │ │ ├── Magnesium.java
│ │ │ │ │ ├── Manganese.java
│ │ │ │ │ ├── Nickel.java
│ │ │ │ │ ├── Nitrogen.java
│ │ │ │ │ ├── Oxygen.java
│ │ │ │ │ ├── Phosphorus.java
│ │ │ │ │ ├── Potassium.java
│ │ │ │ │ ├── Selenium.java
│ │ │ │ │ ├── Sodium.java
│ │ │ │ │ ├── Sulfur.java
│ │ │ │ │ ├── Zinc.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── enzymes
│ │ │ │ ├── Enzyme.java
│ │ │ │ ├── EnzymeFactory.java
│ │ │ │ └── package.html
│ │ │ ├── genes
│ │ │ │ ├── GeneMaps.java
│ │ │ │ ├── ProteinGeneDetailsProvider.java
│ │ │ │ ├── ensembl
│ │ │ │ │ ├── EnsemblVersion.java
│ │ │ │ │ ├── GeneMapping.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── go
│ │ │ │ │ ├── GoDomains.java
│ │ │ │ │ ├── GoMapping.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── ions
│ │ │ │ ├── Charge.java
│ │ │ │ ├── Ion.java
│ │ │ │ ├── IonFactory.java
│ │ │ │ ├── NeutralLoss.java
│ │ │ │ ├── NeutralLossCombination.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── ElementaryIon.java
│ │ │ │ │ ├── Glycan.java
│ │ │ │ │ ├── ImmoniumIon.java
│ │ │ │ │ ├── PeptideFragmentIon.java
│ │ │ │ │ ├── PrecursorIon.java
│ │ │ │ │ ├── RelatedIon.java
│ │ │ │ │ ├── ReporterIon.java
│ │ │ │ │ ├── TagFragmentIon.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── modifications
│ │ │ │ ├── Modification.java
│ │ │ │ ├── ModificationCategory.java
│ │ │ │ ├── ModificationFactory.java
│ │ │ │ ├── ModificationProvider.java
│ │ │ │ └── ModificationType.java
│ │ │ ├── package.html
│ │ │ ├── proteins
│ │ │ │ ├── Peptide.java
│ │ │ │ ├── Protein.java
│ │ │ │ └── package.html
│ │ │ ├── taxonomy
│ │ │ │ ├── SpeciesFactory.java
│ │ │ │ ├── mappings
│ │ │ │ │ ├── BiomartMapping.java
│ │ │ │ │ ├── EnsemblSpecies.java
│ │ │ │ │ ├── UniprotTaxonomy.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ └── variants
│ │ │ │ ├── AaSubstitutionMatrix.java
│ │ │ │ ├── AminoAcidSubstitution.java
│ │ │ │ ├── Variant.java
│ │ │ │ ├── amino_acids
│ │ │ │ ├── Deletion.java
│ │ │ │ ├── Insertion.java
│ │ │ │ ├── Substitution.java
│ │ │ │ ├── Swap.java
│ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ ├── filtering
│ │ │ ├── Filter.java
│ │ │ ├── FilterItem.java
│ │ │ ├── FilterItemComparator.java
│ │ │ └── package.html
│ │ ├── identification
│ │ │ ├── Advocate.java
│ │ │ ├── Identification.java
│ │ │ ├── IdentificationKeys.java
│ │ │ ├── IdentificationMatch.java
│ │ │ ├── IdentificationMethod.java
│ │ │ ├── SpectrumIdentificationAssumption.java
│ │ │ ├── TagFactory.java
│ │ │ ├── amino_acid_tags
│ │ │ │ ├── MassGap.java
│ │ │ │ ├── Tag.java
│ │ │ │ ├── TagComponent.java
│ │ │ │ └── package.html
│ │ │ ├── features
│ │ │ │ ├── IdentificationFeaturesCache.java
│ │ │ │ ├── IdentificationFeaturesGenerator.java
│ │ │ │ ├── MutexMap.java
│ │ │ │ └── package.html
│ │ │ ├── filtering
│ │ │ │ ├── AssumptionFilter.java
│ │ │ │ ├── MatchFilter.java
│ │ │ │ ├── PeptideAssumptionFilter.java
│ │ │ │ ├── PeptideFilter.java
│ │ │ │ ├── ProteinFilter.java
│ │ │ │ ├── PsmFilter.java
│ │ │ │ ├── items
│ │ │ │ │ ├── AssumptionFilterItem.java
│ │ │ │ │ ├── PeptideFilterItem.java
│ │ │ │ │ ├── ProteinFilterItem.java
│ │ │ │ │ ├── PsmFilterItem.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── identification_parameters
│ │ │ │ ├── IdentificationParametersFactory.java
│ │ │ │ └── package.html
│ │ │ ├── matches
│ │ │ │ ├── IonMatch.java
│ │ │ │ ├── ModificationMatch.java
│ │ │ │ ├── PeptideMatch.java
│ │ │ │ ├── PeptideVariantMatches.java
│ │ │ │ ├── ProteinMatch.java
│ │ │ │ ├── SpectrumMatch.java
│ │ │ │ └── package.html
│ │ │ ├── matches_iterators
│ │ │ │ ├── MatchesIterator.java
│ │ │ │ ├── PeptideMatchesIterator.java
│ │ │ │ ├── ProteinMatchesIterator.java
│ │ │ │ ├── SpectrumMatchesIterator.java
│ │ │ │ └── package.html
│ │ │ ├── modification
│ │ │ │ ├── ModificationLocalizationScore.java
│ │ │ │ ├── ModificationSiteMapping.java
│ │ │ │ ├── ModificationtableContent.java
│ │ │ │ ├── mapping
│ │ │ │ │ ├── ModificationLocalizationMapper.java
│ │ │ │ │ ├── ModificationMassMapper.java
│ │ │ │ │ ├── ModificationNameMapper.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── package.html
│ │ │ │ ├── peptide_mapping
│ │ │ │ │ ├── ModificationPeptideMapping.java
│ │ │ │ │ ├── package.html
│ │ │ │ │ └── performance
│ │ │ │ │ │ ├── HistoneExample.java
│ │ │ │ │ │ ├── PerformanceBenchmark.java
│ │ │ │ │ │ ├── PerformanceBenchmarkRunnable.java
│ │ │ │ │ │ └── package.html
│ │ │ │ ├── scores
│ │ │ │ │ ├── MDScore.java
│ │ │ │ │ ├── PhosphoRS.java
│ │ │ │ │ └── package.html
│ │ │ │ └── search_engine_mapping
│ │ │ │ │ ├── ModificationLocalizationMapper.java
│ │ │ │ │ ├── ModificationMassMapper.java
│ │ │ │ │ ├── ModificationNameMapper.java
│ │ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ ├── peptide_fragmentation
│ │ │ │ ├── FragmentItensityPredictor.java
│ │ │ │ ├── PeptideFragmentationModel.java
│ │ │ │ ├── models
│ │ │ │ │ ├── SequestFragmentationModel.java
│ │ │ │ │ ├── UniformFragmentation.java
│ │ │ │ │ ├── ms2pip
│ │ │ │ │ │ ├── features_configuration
│ │ │ │ │ │ │ ├── FeaturesMap.java
│ │ │ │ │ │ │ ├── FeaturesMapManager.java
│ │ │ │ │ │ │ ├── Ms2pipFeature.java
│ │ │ │ │ │ │ ├── MultipleAAPropertyFeature.java
│ │ │ │ │ │ │ ├── SingleAAPropertyFeature.java
│ │ │ │ │ │ │ ├── features
│ │ │ │ │ │ │ │ ├── AAIdentityFeatureAbsolute.java
│ │ │ │ │ │ │ │ ├── AAIdentityFeatureRelative.java
│ │ │ │ │ │ │ │ ├── AAPropertyFeatureAbsolute.java
│ │ │ │ │ │ │ │ ├── AAPropertyFeatureRelative.java
│ │ │ │ │ │ │ │ ├── AAPropertyRelationshipFeature.java
│ │ │ │ │ │ │ │ ├── ComplementaryIonAminoAcidFeature.java
│ │ │ │ │ │ │ │ ├── ComplementaryIonFeature.java
│ │ │ │ │ │ │ │ ├── ForwardIonAminoAcidFeature.java
│ │ │ │ │ │ │ │ ├── ForwardIonFeature.java
│ │ │ │ │ │ │ │ ├── ModificationFeature.java
│ │ │ │ │ │ │ │ ├── PeptideAminoAcidFeature.java
│ │ │ │ │ │ │ │ ├── PeptideFeature.java
│ │ │ │ │ │ │ │ ├── generic
│ │ │ │ │ │ │ │ │ ├── AAIdentityFeature.java
│ │ │ │ │ │ │ │ │ ├── AAPropertyFeature.java
│ │ │ │ │ │ │ │ │ ├── AASequenceFeature.java
│ │ │ │ │ │ │ │ │ ├── IonFeature.java
│ │ │ │ │ │ │ │ │ └── package.html
│ │ │ │ │ │ │ │ └── package.html
│ │ │ │ │ │ │ └── package.html
│ │ │ │ │ │ ├── features_generation
│ │ │ │ │ │ │ ├── FeaturesGenerator.java
│ │ │ │ │ │ │ └── package.html
│ │ │ │ │ │ └── package.html
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── peptide_inference
│ │ │ │ ├── PeptideInference.java
│ │ │ │ └── package.html
│ │ │ ├── peptide_shaker
│ │ │ │ ├── Metrics.java
│ │ │ │ ├── ModificationScoring.java
│ │ │ │ ├── PSModificationScores.java
│ │ │ │ ├── PSParameter.java
│ │ │ │ └── package.html
│ │ │ ├── protein_inference
│ │ │ │ ├── FastaMapper.java
│ │ │ │ ├── PeptideAndProteinBuilder.java
│ │ │ │ ├── PeptideProteinMapping.java
│ │ │ │ ├── fm_index
│ │ │ │ │ ├── AccessionMetaData.java
│ │ │ │ │ ├── CacheElement.java
│ │ │ │ │ ├── FMIndex.java
│ │ │ │ │ ├── MassIndexMap.java
│ │ │ │ │ ├── MatrixContent.java
│ │ │ │ │ ├── Rank.java
│ │ │ │ │ ├── SNPElement.java
│ │ │ │ │ ├── TagElement.java
│ │ │ │ │ ├── WaveletTree.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── protein_sequences
│ │ │ │ ├── AaOccurrence.java
│ │ │ │ ├── AmbiguousSequenceIterator.java
│ │ │ │ ├── SingleProteinSequenceProvider.java
│ │ │ │ ├── digestion
│ │ │ │ │ ├── ExtendedPeptide.java
│ │ │ │ │ ├── IteratorFactory.java
│ │ │ │ │ ├── PeptideDraft.java
│ │ │ │ │ ├── ProteinIteratorUtils.java
│ │ │ │ │ ├── SequenceIterator.java
│ │ │ │ │ ├── iterators
│ │ │ │ │ │ ├── NoDigestionCombinationIterator.java
│ │ │ │ │ │ ├── NoDigestionIterator.java
│ │ │ │ │ │ ├── SpecificSingleEnzymeCombinationIterator.java
│ │ │ │ │ │ ├── SpecificSingleEnzymeIterator.java
│ │ │ │ │ │ ├── UnspecificCombinationIterator.java
│ │ │ │ │ │ ├── UnspecificIterator.java
│ │ │ │ │ │ └── package.html
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── psm_scoring
│ │ │ │ ├── PsmScore.java
│ │ │ │ ├── PsmScoresEstimator.java
│ │ │ │ ├── package.html
│ │ │ │ └── psm_scores
│ │ │ │ │ ├── HyperScore.java
│ │ │ │ │ ├── PrecursorAccuracy.java
│ │ │ │ │ ├── SnrScore.java
│ │ │ │ │ └── package.html
│ │ │ ├── spectrum_annotation
│ │ │ │ ├── AnnotationParameters.java
│ │ │ │ ├── IonMatchKeysCache.java
│ │ │ │ ├── NeutralLossesMap.java
│ │ │ │ ├── SpecificAnnotationParameters.java
│ │ │ │ ├── SpectrumAnnotator.java
│ │ │ │ ├── package.html
│ │ │ │ ├── simple_annotators
│ │ │ │ │ ├── FragmentAnnotator.java
│ │ │ │ │ ├── FragmentAnnotatorNL.java
│ │ │ │ │ ├── ImmoniumIonAnnotator.java
│ │ │ │ │ ├── PrecursorAnnotator.java
│ │ │ │ │ ├── ReporterIonAnnotator.java
│ │ │ │ │ └── package.html
│ │ │ │ └── spectrum_annotators
│ │ │ │ │ ├── PeptideSpectrumAnnotator.java
│ │ │ │ │ ├── SimplePeptideAnnotator.java
│ │ │ │ │ ├── TagSpectrumAnnotator.java
│ │ │ │ │ └── package.html
│ │ │ ├── spectrum_assumptions
│ │ │ │ ├── PeptideAssumption.java
│ │ │ │ ├── PeptideAssumptionParameter.java
│ │ │ │ ├── TagAssumption.java
│ │ │ │ └── package.html
│ │ │ ├── utils
│ │ │ │ ├── ModificationUtils.java
│ │ │ │ ├── PeptideUtils.java
│ │ │ │ ├── ProteinUtils.java
│ │ │ │ ├── TagUtils.java
│ │ │ │ └── package.html
│ │ │ └── validation
│ │ │ │ ├── MatchValidationLevel.java
│ │ │ │ ├── package.html
│ │ │ │ └── percolator
│ │ │ │ ├── PercolatorFeature.java
│ │ │ │ └── PercolatorFeaturesCache.java
│ │ ├── io
│ │ │ ├── biology
│ │ │ │ ├── package.html
│ │ │ │ └── protein
│ │ │ │ │ ├── FastaParameters.java
│ │ │ │ │ ├── FastaSummary.java
│ │ │ │ │ ├── Header.java
│ │ │ │ │ ├── ProteinDatabase.java
│ │ │ │ │ ├── ProteinDetailsProvider.java
│ │ │ │ │ ├── ProteinIterator.java
│ │ │ │ │ ├── SequenceProvider.java
│ │ │ │ │ ├── converters
│ │ │ │ │ ├── DecoyConverter.java
│ │ │ │ │ ├── GenericFastaConverter.java
│ │ │ │ │ └── package.html
│ │ │ │ │ ├── iterators
│ │ │ │ │ ├── FastaIterator.java
│ │ │ │ │ ├── HeaderIterator.java
│ │ │ │ │ └── package.html
│ │ │ │ │ └── package.html
│ │ │ ├── identification
│ │ │ │ ├── IdfileReader.java
│ │ │ │ ├── IdfileReaderFactory.java
│ │ │ │ ├── MzIdentMLIdfileSearchParametersConverter.java
│ │ │ │ ├── MzIdentMLVersion.java
│ │ │ │ ├── idfilereaders
│ │ │ │ │ ├── AndromedaIdfileReader.java
│ │ │ │ │ ├── CossIdfileReader.java
│ │ │ │ │ ├── DirecTagIdfileReader.java
│ │ │ │ │ ├── MascotIdfileReader.java
│ │ │ │ │ ├── MsAmandaIdfileReader.java
│ │ │ │ │ ├── MzIdentMLIdfileReader.java
│ │ │ │ │ ├── NovorIdfileReader.java
│ │ │ │ │ ├── OnyaseIdfileReader.java
│ │ │ │ │ ├── PNovoIdfileReader.java
│ │ │ │ │ ├── PepNovoIdfileReader.java
│ │ │ │ │ ├── PepxmlIdfileReader.java
│ │ │ │ │ ├── SageIdfileReader.java
│ │ │ │ │ ├── TideIdfileReader.java
│ │ │ │ │ ├── XTandemIdfileReader.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── package.html
│ │ │ │ └── writers
│ │ │ │ │ ├── SimpleMzIdentMLExporter.java
│ │ │ │ │ └── package.html
│ │ │ ├── mass_spectrometry
│ │ │ │ ├── MsFileExporter.java
│ │ │ │ ├── MsFileHandler.java
│ │ │ │ ├── MsFileIterator.java
│ │ │ │ ├── apl
│ │ │ │ │ ├── AplFileWriter.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── cms
│ │ │ │ │ ├── CmsFileIterator.java
│ │ │ │ │ ├── CmsFileReader.java
│ │ │ │ │ ├── CmsFileUtils.java
│ │ │ │ │ ├── CmsFileWriter.java
│ │ │ │ │ ├── CmsFolder.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── mgf
│ │ │ │ │ ├── IndexedMgfReader.java
│ │ │ │ │ ├── MgfFileIterator.java
│ │ │ │ │ ├── MgfFileUtils.java
│ │ │ │ │ ├── MgfFileWriter.java
│ │ │ │ │ ├── MgfIndex.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── ms2
│ │ │ │ │ ├── Ms2Exporter.java
│ │ │ │ │ ├── Ms2FileWriter.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── mzml
│ │ │ │ │ ├── IntDecoder.java
│ │ │ │ │ ├── MSNumpress.java
│ │ │ │ │ ├── MzmlFileIterator.java
│ │ │ │ │ ├── MzmlFileUtils.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ ├── parameters
│ │ │ │ ├── DummyParameters.java
│ │ │ │ ├── MarshallableParameter.java
│ │ │ │ ├── SdrfExport.java
│ │ │ │ └── package.html
│ │ │ └── temp
│ │ │ │ ├── TempFilesManager.java
│ │ │ │ └── package.html
│ │ ├── mass_spectrometry
│ │ │ ├── FragmentationMethod.java
│ │ │ ├── SimpleNoiseDistribution.java
│ │ │ ├── SpectrumProvider.java
│ │ │ ├── indexes
│ │ │ │ ├── PrecursorMap.java
│ │ │ │ ├── SpectrumIndex.java
│ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ ├── proteowizard
│ │ │ │ ├── MsConvertParameters.java
│ │ │ │ ├── ProteoWizardFilter.java
│ │ │ │ ├── ProteoWizardMsFormat.java
│ │ │ │ └── package.html
│ │ │ ├── spectra
│ │ │ │ ├── Peak.java
│ │ │ │ ├── Precursor.java
│ │ │ │ ├── PrecursorParameter.java
│ │ │ │ ├── RecalibrationUtils.java
│ │ │ │ ├── Spectrum.java
│ │ │ │ ├── SpectrumUtil.java
│ │ │ │ └── package.html
│ │ │ ├── thermo_raw_file_parser
│ │ │ │ ├── ThermoRawFileParserOutputFormat.java
│ │ │ │ ├── ThermoRawFileParserParameters.java
│ │ │ │ ├── gui
│ │ │ │ │ ├── ThermoRawFileParserParametersDialog.form
│ │ │ │ │ ├── ThermoRawFileParserParametersDialog.java
│ │ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ │ └── utils
│ │ │ │ ├── StandardMasses.java
│ │ │ │ └── package.html
│ │ ├── normalization
│ │ │ ├── NormalizationFactors.java
│ │ │ └── package.html
│ │ ├── package.html
│ │ ├── patient
│ │ │ ├── Patient.java
│ │ │ ├── PatientInformation.java
│ │ │ └── package.html
│ │ ├── personalization
│ │ │ ├── ExperimentObject.java
│ │ │ ├── UrParameter.java
│ │ │ └── package.html
│ │ ├── quantification
│ │ │ ├── Quantification.java
│ │ │ ├── package.html
│ │ │ ├── reporterion
│ │ │ │ ├── Reagent.java
│ │ │ │ ├── ReporterIonQuantification.java
│ │ │ │ ├── ReporterMethod.java
│ │ │ │ ├── ReporterMethodFactory.java
│ │ │ │ └── package.html
│ │ │ └── spectrumcounting
│ │ │ │ ├── ScalingFactorsEstimators.java
│ │ │ │ ├── SpectrumCountingMethod.java
│ │ │ │ └── package.html
│ │ ├── refinement_parameters
│ │ │ ├── PepnovoAssumptionDetails.java
│ │ │ └── package.html
│ │ └── units
│ │ │ ├── MetricsPrefix.java
│ │ │ ├── StandardUnit.java
│ │ │ ├── UnitOfMeasurement.java
│ │ │ ├── Units.java
│ │ │ └── package.html
│ │ ├── general
│ │ ├── BoxedObject.java
│ │ ├── CommandLineParser.java
│ │ ├── DefaultOutputLoggerImplementation.java
│ │ ├── FileLoggerImplementation.java
│ │ ├── IsotopicDistribution.java
│ │ ├── IsotopicDistributionSpectrum.java
│ │ ├── IsotopicElement.java
│ │ ├── MassCalc.java
│ │ ├── Translate.java
│ │ ├── UnknownElementMassException.java
│ │ ├── package.html
│ │ └── servlet
│ │ │ ├── MassCalcServlet.java
│ │ │ └── package.html
│ │ ├── gui
│ │ ├── AaMass.form
│ │ ├── AaMass.java
│ │ ├── AminoAcidPatternDialog.form
│ │ ├── AminoAcidPatternDialog.java
│ │ ├── CheckBoxCellRenderer.java
│ │ ├── CheckableItem.java
│ │ ├── CheckedComboBox.java
│ │ ├── DummyFrame.java
│ │ ├── ExportFormatSelectionDialog.form
│ │ ├── ExportFormatSelectionDialog.java
│ │ ├── FlamableJFrame.java
│ │ ├── GuiUtilities.java
│ │ ├── JExceptionDialog.java
│ │ ├── JFrameForBytes.java
│ │ ├── JLabelAndComponentPanel.java
│ │ ├── JOptionEditorPane.java
│ │ ├── JTableForDB.java
│ │ ├── MonitorDimension.java
│ │ ├── PrivacyParametersDialog.form
│ │ ├── PrivacyParametersDialog.java
│ │ ├── SampleSelection.form
│ │ ├── SampleSelection.java
│ │ ├── TableMouseWheelListener.java
│ │ ├── TableProperties.java
│ │ ├── TableScrollBarListener.java
│ │ ├── UtilitiesGUIDefaults.java
│ │ ├── VennDiagramDialog.form
│ │ ├── VennDiagramDialog.java
│ │ ├── VennDiagramLegendLocationDialog.form
│ │ ├── VennDiagramLegendLocationDialog.java
│ │ ├── VennDiagramPanel.form
│ │ ├── VennDiagramPanel.java
│ │ ├── VisibleTableColumnsDialog.form
│ │ ├── VisibleTableColumnsDialog.java
│ │ ├── VisibleTableColumnsDialogParent.java
│ │ ├── XYPlotFiltersDialog.form
│ │ ├── XYPlotFiltersDialog.java
│ │ ├── XYPlottingDialog.form
│ │ ├── XYPlottingDialog.java
│ │ ├── atoms
│ │ │ ├── AtomChainDialog.form
│ │ │ ├── AtomChainDialog.java
│ │ │ ├── AtomPanel.form
│ │ │ ├── AtomPanel.java
│ │ │ └── package.html
│ │ ├── enzymes
│ │ │ ├── EnzymesDialog.form
│ │ │ ├── EnzymesDialog.java
│ │ │ ├── NewEnzymeDialog.form
│ │ │ ├── NewEnzymeDialog.java
│ │ │ └── package.html
│ │ ├── error_handlers
│ │ │ ├── BugReport.form
│ │ │ ├── BugReport.java
│ │ │ ├── HelpDialog.form
│ │ │ ├── HelpDialog.java
│ │ │ ├── notification
│ │ │ │ ├── NotesDialog.form
│ │ │ │ ├── NotesDialog.java
│ │ │ │ ├── NotificationDialog.form
│ │ │ │ ├── NotificationDialog.java
│ │ │ │ ├── NotificationDialogParent.java
│ │ │ │ └── package.html
│ │ │ └── package.html
│ │ ├── events
│ │ │ ├── RescalingEvent.java
│ │ │ └── package.html
│ │ ├── export
│ │ │ ├── graphics
│ │ │ │ ├── ExportGraphicsDialog.form
│ │ │ │ ├── ExportGraphicsDialog.java
│ │ │ │ └── package.html
│ │ │ └── report
│ │ │ │ ├── ReportEditor.form
│ │ │ │ ├── ReportEditor.java
│ │ │ │ └── package.html
│ │ ├── file_handling
│ │ │ ├── FileAndFileFilter.java
│ │ │ ├── FileChooserUtil.java
│ │ │ ├── FileDisplayDialog.form
│ │ │ ├── FileDisplayDialog.java
│ │ │ ├── FileSelectionDialog.form
│ │ │ ├── FileSelectionDialog.java
│ │ │ └── package.html
│ │ ├── filtering
│ │ │ ├── FilterDialog.form
│ │ │ ├── FilterDialog.java
│ │ │ ├── FilterParameters.java
│ │ │ └── package.html
│ │ ├── genes
│ │ │ ├── GeneDetailsDialog.form
│ │ │ ├── GeneDetailsDialog.java
│ │ │ └── package.html
│ │ ├── interfaces
│ │ │ ├── SpectrumAnnotation.java
│ │ │ ├── SpectrumPanelListener.java
│ │ │ └── package.html
│ │ ├── isotopic_calculator
│ │ │ ├── IsotopeDistributionGui.form
│ │ │ ├── IsotopeDistributionGui.java
│ │ │ └── package.html
│ │ ├── modification
│ │ │ ├── ModificationDialog.form
│ │ │ ├── ModificationDialog.java
│ │ │ ├── ModificationTable.java
│ │ │ ├── ModificationsDialog.form
│ │ │ ├── ModificationsDialog.java
│ │ │ └── package.html
│ │ ├── package.html
│ │ ├── parameters
│ │ │ ├── SparklineColorsDialog.form
│ │ │ ├── SparklineColorsDialog.java
│ │ │ ├── identification
│ │ │ │ ├── AlgorithmParametersDialog.java
│ │ │ │ ├── IdentificationAlgorithmParameter.java
│ │ │ │ ├── IdentificationParametersEditionDialog.form
│ │ │ │ ├── IdentificationParametersEditionDialog.java
│ │ │ │ ├── IdentificationParametersNameDialog.form
│ │ │ │ ├── IdentificationParametersNameDialog.java
│ │ │ │ ├── IdentificationParametersOverviewDialog.form
│ │ │ │ ├── IdentificationParametersOverviewDialog.java
│ │ │ │ ├── advanced
│ │ │ │ │ ├── AnnotationParametersDialog.form
│ │ │ │ │ ├── AnnotationParametersDialog.java
│ │ │ │ │ ├── BackgroundSpeciesDialog.form
│ │ │ │ │ ├── BackgroundSpeciesDialog.java
│ │ │ │ │ ├── FractionParametersDialog.form
│ │ │ │ │ ├── FractionParametersDialog.java
│ │ │ │ │ ├── GeneParametersDialog.form
│ │ │ │ │ ├── GeneParametersDialog.java
│ │ │ │ │ ├── MatchesImportParametersDialog.form
│ │ │ │ │ ├── MatchesImportParametersDialog.java
│ │ │ │ │ ├── ModificationLocalizationParametersDialog.form
│ │ │ │ │ ├── ModificationLocalizationParametersDialog.java
│ │ │ │ │ ├── PeptideVariantsParametersDialog.form
│ │ │ │ │ ├── PeptideVariantsParametersDialog.java
│ │ │ │ │ ├── ProteinInferenceParametersDialog.form
│ │ │ │ │ ├── ProteinInferenceParametersDialog.java
│ │ │ │ │ ├── PsmScoringParametersDialog.form
│ │ │ │ │ ├── PsmScoringParametersDialog.java
│ │ │ │ │ ├── SequenceMatchingParametersDialog.form
│ │ │ │ │ ├── SequenceMatchingParametersDialog.java
│ │ │ │ │ ├── ValidationParametersDialog.form
│ │ │ │ │ ├── ValidationParametersDialog.java
│ │ │ │ │ ├── ValidationQCParametersDialog.form
│ │ │ │ │ ├── ValidationQCParametersDialog.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── algorithm
│ │ │ │ │ ├── AndromedaParametersDialog.form
│ │ │ │ │ ├── AndromedaParametersDialog.java
│ │ │ │ │ ├── CometParametersDialog.form
│ │ │ │ │ ├── CometParametersDialog.java
│ │ │ │ │ ├── DirecTagParametersDialog.form
│ │ │ │ │ ├── DirecTagParametersDialog.java
│ │ │ │ │ ├── MetaMorpheusParametersDialog.form
│ │ │ │ │ ├── MetaMorpheusParametersDialog.java
│ │ │ │ │ ├── MsAmandaParametersDialog.form
│ │ │ │ │ ├── MsAmandaParametersDialog.java
│ │ │ │ │ ├── MsgfParametersDialog.form
│ │ │ │ │ ├── MsgfParametersDialog.java
│ │ │ │ │ ├── MyriMatchParametersDialog.form
│ │ │ │ │ ├── MyriMatchParametersDialog.java
│ │ │ │ │ ├── NovorParametersDialog.form
│ │ │ │ │ ├── NovorParametersDialog.java
│ │ │ │ │ ├── OmssaParametersDialog.form
│ │ │ │ │ ├── OmssaParametersDialog.java
│ │ │ │ │ ├── PNovoParametersDialog.form
│ │ │ │ │ ├── PNovoParametersDialog.java
│ │ │ │ │ ├── PepNovoParametersDialog.form
│ │ │ │ │ ├── PepNovoParametersDialog.java
│ │ │ │ │ ├── SageParametersDialog.form
│ │ │ │ │ ├── SageParametersDialog.java
│ │ │ │ │ ├── TideParametersDialog.form
│ │ │ │ │ ├── TideParametersDialog.java
│ │ │ │ │ ├── XTandemParametersDialog.form
│ │ │ │ │ ├── XTandemParametersDialog.java
│ │ │ │ │ └── package.html
│ │ │ │ ├── package.html
│ │ │ │ ├── pride
│ │ │ │ │ ├── EnzymeParametersDialog.form
│ │ │ │ │ ├── EnzymeParametersDialog.java
│ │ │ │ │ └── package.html
│ │ │ │ └── search
│ │ │ │ │ ├── SearchParametersDialog.form
│ │ │ │ │ ├── SearchParametersDialog.java
│ │ │ │ │ ├── SequenceDbDetailsDialog.form
│ │ │ │ │ ├── SequenceDbDetailsDialog.java
│ │ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ ├── proteowizard
│ │ │ │ ├── MsConvertParametersDialog.form
│ │ │ │ ├── MsConvertParametersDialog.java
│ │ │ │ └── package.html
│ │ │ └── tools
│ │ │ │ ├── ProcessingParametersDialog.form
│ │ │ │ ├── ProcessingParametersDialog.java
│ │ │ │ └── package.html
│ │ ├── protein
│ │ │ ├── FastaParametersDialog.form
│ │ │ ├── FastaParametersDialog.java
│ │ │ ├── ModificationProfile.java
│ │ │ ├── ProteinSequencePane.java
│ │ │ ├── SequenceModificationPanel.java
│ │ │ └── package.html
│ │ ├── renderers
│ │ │ ├── AlignedListCellRenderer.java
│ │ │ ├── AlignedTableCellRenderer.java
│ │ │ ├── ByteArrayRenderer.java
│ │ │ ├── FragmentIonTableCellRenderer.java
│ │ │ ├── GraphicsPanelTableCellRenderer.java
│ │ │ ├── TimestampRenderer.java
│ │ │ ├── ToolTipComboBoxRenderer.java
│ │ │ └── package.html
│ │ ├── spectrum
│ │ │ ├── ChromatogramPanel.java
│ │ │ ├── DefaultSpectrumAnnotation.java
│ │ │ ├── FragmentIonTable.java
│ │ │ ├── GraphicsPanel.java
│ │ │ ├── IntensityHistogram.java
│ │ │ ├── IonLabelColorTableModel.java
│ │ │ ├── IsotopicDistributionPanel.java
│ │ │ ├── MassErrorBubblePlot.java
│ │ │ ├── MassErrorPlot.java
│ │ │ ├── ReferenceArea.java
│ │ │ ├── SequenceFragmentationPanel.java
│ │ │ ├── SpectrumPanel.java
│ │ │ └── package.html
│ │ ├── tablemodels
│ │ │ ├── SelfUpdatingTableModel.java
│ │ │ └── package.html
│ │ ├── utils
│ │ │ ├── ConnectionDialog.java
│ │ │ ├── DateChooser.java
│ │ │ ├── EmptyCollections.java
│ │ │ ├── SwingUtils.java
│ │ │ ├── package.html
│ │ │ └── user_choice
│ │ │ │ ├── ListChooser.form
│ │ │ │ ├── ListChooser.java
│ │ │ │ ├── list_choosers
│ │ │ │ ├── ModificationChooser.java
│ │ │ │ ├── StringListChooser.java
│ │ │ │ └── package.html
│ │ │ │ └── package.html
│ │ ├── variants
│ │ │ ├── aa_substitutions
│ │ │ │ ├── AaSubstitutionMatrixTableModel.java
│ │ │ │ └── package.html
│ │ │ └── package.html
│ │ └── waiting
│ │ │ └── waitinghandlers
│ │ │ ├── ProgressDialog.java
│ │ │ ├── ProgressDialogX.form
│ │ │ ├── ProgressDialogX.java
│ │ │ ├── WaitingDialog.form
│ │ │ ├── WaitingDialog.java
│ │ │ ├── WaitingHandlerCLIImpl.java
│ │ │ ├── WaitingHandlerDummy.java
│ │ │ └── package.html
│ │ ├── interfaces
│ │ ├── Connectable.java
│ │ ├── Flamable.java
│ │ ├── Logger.java
│ │ ├── Modification.java
│ │ ├── Monitorable.java
│ │ ├── PickUp.java
│ │ ├── Sequence.java
│ │ ├── SpectrumFile.java
│ │ ├── TableValueWrapper.java
│ │ └── package.html
│ │ ├── io
│ │ ├── IoUtil.java
│ │ ├── MascotEnzymeReader.java
│ │ ├── PklFile.java
│ │ ├── PropertiesManager.java
│ │ ├── PushBackStringReader.java
│ │ ├── StartBrowser.java
│ │ ├── StreamGobbler.java
│ │ ├── compression
│ │ │ ├── GzUtils.java
│ │ │ ├── SectionGzWriter
│ │ │ │ ├── WriterBySection.java
│ │ │ │ └── package.html
│ │ │ ├── TarUtils.java
│ │ │ ├── ZipUtils.java
│ │ │ ├── ZstdUtils.java
│ │ │ └── package.html
│ │ ├── export
│ │ │ ├── ExportFactory.java
│ │ │ ├── ExportFeature.java
│ │ │ ├── ExportFormat.java
│ │ │ ├── ExportScheme.java
│ │ │ ├── ExportWriter.java
│ │ │ ├── WorkbookStyle.java
│ │ │ ├── features
│ │ │ │ ├── ReporterExportFeature.java
│ │ │ │ ├── package.html
│ │ │ │ ├── peptideshaker
│ │ │ │ │ ├── PsAnnotationFeature.java
│ │ │ │ │ ├── PsFragmentFeature.java
│ │ │ │ │ ├── PsIdentificationAlgorithmMatchesFeature.java
│ │ │ │ │ ├── PsInputFilterFeature.java
│ │ │ │ │ ├── PsPeptideFeature.java
│ │ │ │ │ ├── PsProjectFeature.java
│ │ │ │ │ ├── PsProteinFeature.java
│ │ │ │ │ ├── PsPsmFeature.java
│ │ │ │ │ ├── PsPtmScoringFeature.java
│ │ │ │ │ ├── PsSearchFeature.java
│ │ │ │ │ ├── PsSpectrumCountingFeature.java
│ │ │ │ │ ├── PsValidationFeature.java
│ │ │ │ │ └── package.html
│ │ │ │ └── reporter
│ │ │ │ │ ├── ReporterPeptideFeature.java
│ │ │ │ │ ├── ReporterProteinFeatures.java
│ │ │ │ │ ├── ReporterPsmFeatures.java
│ │ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ ├── styles
│ │ │ │ ├── DefaultStyle.java
│ │ │ │ └── package.html
│ │ │ ├── writers
│ │ │ │ ├── ExcelWriter.java
│ │ │ │ ├── TextWriter.java
│ │ │ │ └── package.html
│ │ │ └── xml
│ │ │ │ ├── SimpleXmlWriter.java
│ │ │ │ └── package.html
│ │ ├── file
│ │ │ ├── FileSystemAccessor.java
│ │ │ ├── FilenameExtensionFilter.java
│ │ │ ├── FolderMonitor.java
│ │ │ ├── LastSelectedFolder.java
│ │ │ ├── MonitorableFileInputStream.java
│ │ │ ├── MonitorableInputStream.java
│ │ │ ├── SerializationUtils.java
│ │ │ ├── filefilters
│ │ │ │ ├── DatFileFilter.java
│ │ │ │ ├── DtaFileFilter.java
│ │ │ │ ├── FastaFileFilter.java
│ │ │ │ ├── FileFilterUtils.java
│ │ │ │ ├── JpegFileFilter.java
│ │ │ │ ├── MgfFileFilter.java
│ │ │ │ ├── Ms2FileFilter.java
│ │ │ │ ├── MzDataFileFilter.java
│ │ │ │ ├── MzMlFileFilter.java
│ │ │ │ ├── MzXmlFileFilter.java
│ │ │ │ ├── OmxFileFilter.java
│ │ │ │ ├── OutFileFilter.java
│ │ │ │ ├── PdfFileFilter.java
│ │ │ │ ├── PeffFileFilter.java
│ │ │ │ ├── PepXmlFileFilter.java
│ │ │ │ ├── PklFileFilter.java
│ │ │ │ ├── PklSpoFileFilter.java
│ │ │ │ ├── PkxFileFilter.java
│ │ │ │ ├── PngFileFilter.java
│ │ │ │ ├── ProtXmlFileFilter.java
│ │ │ │ ├── SequestParamsFileFilter.java
│ │ │ │ ├── SvgFileFilter.java
│ │ │ │ ├── TiffFileFilter.java
│ │ │ │ ├── XmlFileFilter.java
│ │ │ │ └── package.html
│ │ │ └── package.html
│ │ ├── flat
│ │ │ ├── SimpleFileReader.java
│ │ │ ├── SimpleFileWriter.java
│ │ │ ├── package.html
│ │ │ └── readers
│ │ │ │ ├── SimpleGzReader.java
│ │ │ │ └── SimpleTextReader.java
│ │ ├── ftp
│ │ │ ├── FTP.java
│ │ │ ├── FTPClient.java
│ │ │ ├── FTPDownloader.java
│ │ │ ├── FtpConnectionException.java
│ │ │ ├── FtpLoginException.java
│ │ │ ├── FtpProtocolException.java
│ │ │ └── package.html
│ │ ├── json
│ │ │ ├── JsonMarshaller.java
│ │ │ ├── adapter
│ │ │ │ ├── ColorAdapter.java
│ │ │ │ ├── FileAdapter.java
│ │ │ │ ├── InterfaceAdapter.java
│ │ │ │ └── package.html
│ │ │ ├── marshallers
│ │ │ │ ├── IdentificationParametersMarshaller.java
│ │ │ │ ├── PTMFactoryMarshaller.java
│ │ │ │ ├── PrideMarshaller.java
│ │ │ │ └── package.html
│ │ │ └── package.html
│ │ └── package.html
│ │ ├── junit
│ │ ├── TestCaseLM.java
│ │ └── package.html
│ │ ├── math
│ │ ├── BasicMathFunctions.java
│ │ ├── BigFunctions.java
│ │ ├── BigMathUtils.java
│ │ ├── HistogramUtils.java
│ │ ├── VennDiagram.java
│ │ ├── clustering
│ │ │ ├── KMeansClustering.java
│ │ │ ├── package.html
│ │ │ └── settings
│ │ │ │ ├── KMeansClusteringSettings.java
│ │ │ │ └── package.html
│ │ ├── matrix
│ │ │ ├── DoubleMatrix.java
│ │ │ └── package.html
│ │ ├── package.html
│ │ ├── roc
│ │ │ ├── DataRoc.java
│ │ │ ├── DistributionRoc.java
│ │ │ └── package.html
│ │ └── statistics
│ │ │ ├── Distribution.java
│ │ │ ├── ROC.java
│ │ │ ├── distributions
│ │ │ ├── BinomialDistribution.java
│ │ │ ├── NonSymmetricalNormalDistribution.java
│ │ │ ├── NormalDistribution.java
│ │ │ ├── NormalKernelDensityEstimator.java
│ │ │ └── package.html
│ │ │ ├── linear_regression
│ │ │ ├── LinearRegression.java
│ │ │ ├── RegressionStatistics.java
│ │ │ ├── filters
│ │ │ │ ├── BinningFilter.java
│ │ │ │ ├── ProbabilityFilter.java
│ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ └── regressions
│ │ │ │ ├── MedianRegression.java
│ │ │ │ ├── SimpleLinearRegression.java
│ │ │ │ └── package.html
│ │ │ └── package.html
│ │ ├── memory
│ │ ├── MemoryConsumptionStatus.java
│ │ └── package.html
│ │ ├── messages
│ │ ├── FeedBack.java
│ │ └── package.html
│ │ ├── nucleotide
│ │ ├── NucleotideSequence.java
│ │ ├── NucleotideSequenceImpl.java
│ │ └── package.html
│ │ ├── package.html
│ │ ├── parameters
│ │ ├── UtilitiesUserParameters.java
│ │ ├── identification
│ │ │ ├── IdentificationParameters.java
│ │ │ ├── advanced
│ │ │ │ ├── FractionParameters.java
│ │ │ │ ├── GeneParameters.java
│ │ │ │ ├── IdMatchValidationParameters.java
│ │ │ │ ├── ModificationLocalizationParameters.java
│ │ │ │ ├── PeptideVariantsParameters.java
│ │ │ │ ├── ProteinInferenceParameters.java
│ │ │ │ ├── PsmScoringParameters.java
│ │ │ │ ├── SequenceMatchingParameters.java
│ │ │ │ ├── ValidationQcParameters.java
│ │ │ │ └── package.html
│ │ │ ├── package.html
│ │ │ ├── search
│ │ │ │ ├── DigestionParameters.java
│ │ │ │ ├── ModificationParameters.java
│ │ │ │ ├── SearchParameters.java
│ │ │ │ └── package.html
│ │ │ └── tool_specific
│ │ │ │ ├── AndromedaParameters.java
│ │ │ │ ├── CometParameters.java
│ │ │ │ ├── DirecTagParameters.java
│ │ │ │ ├── MetaMorpheusParameters.java
│ │ │ │ ├── MsAmandaParameters.java
│ │ │ │ ├── MsgfParameters.java
│ │ │ │ ├── MyriMatchParameters.java
│ │ │ │ ├── NovorParameters.java
│ │ │ │ ├── OmssaParameters.java
│ │ │ │ ├── PNovoParameters.java
│ │ │ │ ├── PepnovoParameters.java
│ │ │ │ ├── SageParameters.java
│ │ │ │ ├── TideParameters.java
│ │ │ │ ├── XtandemParameters.java
│ │ │ │ └── package.html
│ │ ├── package.html
│ │ ├── peptide_shaker
│ │ │ ├── ProjectType.java
│ │ │ └── package.html
│ │ ├── quantification
│ │ │ ├── package.html
│ │ │ └── spectrum_counting
│ │ │ │ ├── SpectrumCountingParameters.java
│ │ │ │ └── package.html
│ │ ├── searchgui
│ │ │ ├── OutputParameters.java
│ │ │ └── package.html
│ │ └── tools
│ │ │ ├── ProcessingParameters.java
│ │ │ └── package.html
│ │ ├── pdbfinder
│ │ ├── FindPdbForUniprotAccessions.java
│ │ ├── das
│ │ │ └── readers
│ │ │ │ ├── AlignmentBlock.java
│ │ │ │ ├── DasAlignment.java
│ │ │ │ ├── DasAnnotationServerAlingmentReader.java
│ │ │ │ ├── DasAnnotationServerResultReader.java
│ │ │ │ ├── DasFeature.java
│ │ │ │ ├── StartEndPosition.java
│ │ │ │ └── package.html
│ │ ├── package.html
│ │ └── pdb
│ │ │ ├── PdbBlock.java
│ │ │ ├── PdbParameter.java
│ │ │ └── package.html
│ │ ├── pride
│ │ ├── CvTerm.java
│ │ ├── PrideObject.java
│ │ ├── PrideObjectsFactory.java
│ │ ├── PrideWebService.java
│ │ ├── PtmToPrideMap.java
│ │ ├── package.html
│ │ ├── prideobjects
│ │ │ ├── Contact.java
│ │ │ ├── ContactGroup.java
│ │ │ ├── Instrument.java
│ │ │ ├── Protocol.java
│ │ │ ├── Reference.java
│ │ │ ├── ReferenceGroup.java
│ │ │ ├── Sample.java
│ │ │ ├── package.html
│ │ │ └── webservice
│ │ │ │ ├── PrideQuery.java
│ │ │ │ ├── file
│ │ │ │ ├── FileType.java
│ │ │ │ └── package.html
│ │ │ │ ├── package.html
│ │ │ │ └── query
│ │ │ │ ├── PrideFilter.java
│ │ │ │ ├── PrideFilterType.java
│ │ │ │ └── package.html
│ │ └── validation
│ │ │ ├── PrideXmlValidator.java
│ │ │ ├── XMLValidationErrorHandler.java
│ │ │ └── package.html
│ │ ├── protein
│ │ ├── AASequenceImpl.java
│ │ ├── DualEnzyme.java
│ │ ├── Enzyme.java
│ │ ├── ModificationFactory.java
│ │ ├── ModificationImplementation.java
│ │ ├── ModificationTemplate.java
│ │ ├── MolecularFormula.java
│ │ ├── Protein.java
│ │ ├── RegExEnzyme.java
│ │ └── package.html
│ │ ├── sun
│ │ ├── SwingWorker.java
│ │ ├── TableMap.java
│ │ ├── TableSorter.java
│ │ └── package.html
│ │ ├── threading
│ │ ├── ObjectMutex.java
│ │ ├── SimpleSemaphore.java
│ │ └── package.html
│ │ └── waiting
│ │ ├── Duration.java
│ │ ├── WaitingActionListener.java
│ │ ├── WaitingHandler.java
│ │ └── package.html
└── resources
│ ├── DNA_Protein_Translation.properties
│ ├── DefaultJavaOptions.txt
│ ├── FTPClient.properties
│ ├── META-INF
│ └── services
│ │ └── com.compomics.util.experiment.io.identification.IdfileReader
│ ├── MonoAAMasses.properties
│ ├── MonoElementMasses.properties
│ ├── MonoNucleotideMasses.properties
│ ├── SpectrumPanel.properties
│ ├── complementaryNucleotides.properties
│ ├── compomics-utilities.properties
│ ├── elements.txt
│ ├── enzymes.txt
│ ├── helpFiles
│ ├── AnnotationPreferences.html
│ ├── AtomChainDialog.html
│ ├── ChromatogramPanel.html
│ ├── EnzymesDialog.html
│ ├── FilterSettings.html
│ ├── FractionPreferences.html
│ ├── GeneAnnotationPreferences.html
│ ├── InSilicoProteinDigestion.html
│ ├── IsotopicDistributionPanel.html
│ ├── JavaHomeDialog.html
│ ├── JavaOptionsDialog.html
│ ├── ModificationEditor.html
│ ├── NewEnzymeDialog.html
│ ├── OmssaSettingsDialog.html
│ ├── PeptideVariantsPreferences.html
│ ├── PrivacySettingsHelp.html
│ ├── ProcessingPreferences.html
│ ├── ProteinInferencePreferences.html
│ ├── PsmScoringPreferences.html
│ ├── PtmDialog.html
│ ├── PtmLocalizationPreferences.html
│ ├── QualityControlPreferences.html
│ ├── SearchSettingsDialog.html
│ ├── SequenceMatchingPreferences.html
│ ├── SpeciesDialog.html
│ ├── SpectrumPanel.html
│ ├── StatisticsDialog.html
│ ├── ValidationPreferences.html
│ └── XTandemSettingsDialog.html
│ ├── icons
│ ├── accept-new.png
│ ├── accept.png
│ ├── close.png
│ ├── close_grey.png
│ ├── compomics-utilities.png
│ ├── compomics.png
│ ├── contextual_menu_black.png
│ ├── contextual_menu_gray.png
│ ├── edit.png
│ ├── edit_gray.png
│ ├── error-new.png
│ ├── help.GIF
│ ├── help_no_frame.png
│ ├── help_no_frame_grey.png
│ ├── intelliJ.png
│ ├── java.png
│ ├── maven.png
│ ├── next.png
│ ├── next_grey.png
│ ├── ols_transparent.GIF
│ ├── peptide-shaker-medium-orange-shadow.png
│ ├── peptide-shaker-orange.gif
│ ├── peptide-shaker.gif
│ ├── pinned.png
│ ├── previous.png
│ ├── previous_grey.png
│ ├── pwiz_purple_logo.png
│ ├── relims_logo.png
│ ├── reporter_logo.png
│ ├── searchgui-medium-shadow.png
│ ├── searchgui-orange.gif
│ ├── searchgui.gif
│ ├── selected_green-new.png
│ ├── selected_green.png
│ ├── ugent.png
│ ├── unpinned.png
│ ├── vib.png
│ ├── warning-new.png
│ ├── warning2-new.png
│ └── yourkit.png
│ ├── isotopicElement.txt
│ ├── kyte_doolittle.properties
│ ├── meek.properties
│ ├── modificationConversion.txt
│ ├── modifications.properties
│ ├── modifications.txt
│ └── pride.xsd
└── test
├── java
└── com
│ └── compomics
│ └── util
│ └── test
│ ├── FullSuite.java
│ ├── experiment
│ ├── FragmentFactoryTest.java
│ ├── io
│ │ ├── AminoAcidPatternParsingTest.java
│ │ ├── AtomChainParsingTest.java
│ │ ├── IdentificationDBTest.java
│ │ ├── identifications
│ │ │ ├── PepNovoIdfileReaderTest.java
│ │ │ ├── TestIdfileReaderFactory.java
│ │ │ └── package.html
│ │ ├── package.html
│ │ └── spectrum
│ │ │ ├── SpectrumImportTest.java
│ │ │ ├── cms
│ │ │ └── CmsFileTest.java
│ │ │ └── package.html
│ ├── modification
│ │ └── ModificationPeptideMappingTest.java
│ ├── package.html
│ ├── sequences
│ │ ├── digestion
│ │ │ ├── DigestionTest.java
│ │ │ ├── ProteinSequenceIteratorTest.java
│ │ │ └── package.html
│ │ ├── indexing
│ │ │ ├── FMIndexTest.java
│ │ │ └── package.html
│ │ ├── matching
│ │ │ ├── AminoAcidPatternTest.java
│ │ │ ├── SequenceMatchingTest.java
│ │ │ └── package.html
│ │ └── package.html
│ └── spectrum
│ │ ├── indexing
│ │ ├── SpectrumAnnotationTest.java
│ │ └── package.html
│ │ └── package.html
│ ├── general
│ ├── PtmsiteMappingTest.java
│ ├── TestCommandLineParser.java
│ ├── TestIsotopicDistributionCalculator.java
│ ├── TestMassCalc.java
│ ├── package.html
│ └── servlet
│ │ ├── TstMassCalcServlet.java
│ │ └── package.html
│ ├── io
│ ├── TestFTPClient.java
│ ├── TestFilenameExtensionFilter.java
│ ├── TestFolderMonitor.java
│ ├── TestMascotEnzymeReader.java
│ ├── TestMonitorableFileInputStream.java
│ ├── TestMonitorableInputStream.java
│ ├── TestPushBackStringReader.java
│ ├── TestSearchParameterMarshaller.java
│ ├── TestWriterBySection.java
│ └── package.html
│ ├── math
│ ├── TestBigFunctions.java
│ ├── TestBinomialDistribution.java
│ └── package.html
│ ├── nucleotide
│ ├── TestNucleotideSequence.java
│ ├── TestNucleotideSequenceImpl.java
│ └── package.html
│ ├── package.html
│ └── protein
│ ├── TestAASequenceImpl.java
│ ├── TestDualEnzyme.java
│ ├── TestEnzyme.java
│ ├── TestHeader.java
│ ├── TestModificationFactory.java
│ ├── TestModificationImplementation.java
│ ├── TestMolecularFormula.java
│ ├── TestProtein.java
│ ├── TestRegExEnzyme.java
│ └── package.html
└── resources
├── DNA_Protein_Translation.properties
├── DefaultJavaOptions.txt
├── FTPClient.properties
├── META-INF
└── services
│ └── com.compomics.util.experiment.io.identifications.IdfileReader
├── MonoAAMasses.properties
├── MonoElementMasses.properties
├── MonoNucleotideMasses.properties
├── SpectrumPanel.properties
├── complementaryNucleotides.properties
├── compomics-utilities.properties
├── elements.txt
├── enzymes.txt
├── enzymes_test.txt
├── exampleFiles
├── exampleSpectrumA.pkl
└── exampleSpectrumB.pkl
├── exampleSpectrumA.pkl
├── exampleSpectrumB.pkl
├── experiment
├── sgd.fasta
├── terminiSequence.fasta
├── test.mgf
├── test.mgf.out
├── testSequences.fasta
├── testSequences_1.fasta
└── uniprot.fasta
├── fastaFile.fas
├── fastaFile.fas.phr
├── fastaFile.fas.pin
├── fastaFile.fas.psq
├── fastaNucleotideFile.fas
├── formatdb.log
├── helpFiles
├── AnnotationPreferences.html
├── AtomChainDialog.html
├── ChromatogramPanel.html
├── FilterSettings.html
├── FractionPreferences.html
├── GeneAnnotationPreferences.html
├── InSilicoProteinDigestion.html
├── IsotopicDistributionPanel.html
├── JavaHomeDialog.html
├── JavaOptionsDialog.html
├── ModificationEditor.html
├── OmssaSettingsDialog.html
├── PeptideVariantsPreferences.html
├── PrivacySettingsHelp.html
├── ProcessingPreferences.html
├── ProteinInferencePreferences.html
├── PsmScoringPreferences.html
├── PtmDialog.html
├── PtmLocalizationPreferences.html
├── QualityControlPreferences.html
├── SearchSettingsDialog.html
├── SequenceMatchingPreferences.html
├── SpeciesDialog.html
├── SpectrumPanel.html
├── StatisticsDialog.html
├── ValidationPreferences.html
└── XTandemSettingsDialog.html
├── icons
├── accept.png
├── close.png
├── close_grey.png
├── compomics-utilities.png
├── compomics.png
├── contextual_menu_black.png
├── contextual_menu_gray.png
├── edit.png
├── edit_gray.png
├── help.GIF
├── help_no_frame.png
├── help_no_frame_grey.png
├── intelliJ.png
├── java.png
├── maven.png
├── next.png
├── next_grey.png
├── ols_transparent.GIF
├── peptide-shaker-medium-blue-shadow.png
├── peptide-shaker-medium-orange-shadow.png
├── peptide-shaker-orange.gif
├── peptide-shaker.gif
├── pinned.png
├── previous.png
├── previous_grey.png
├── pwiz_purple_logo.png
├── relims_logo.png
├── reporter_logo.png
├── searchgui-medium-shadow.png
├── searchgui-orange.gif
├── searchgui.gif
├── selected_green.png
├── ugent.png
├── unpinned.png
├── vib.png
└── yourkit.png
├── isotopicElement.txt
├── kyte_doolittle.properties
├── meek.properties
├── modificationConversion.txt
├── modifications.properties
├── modifications.txt
├── pride.xsd
├── test.spr.gz
├── testAddSelfDefinedList_AA.properties
├── testAddSelfDefinedList_BiochemElements.properties
├── testCleave.fas
├── testFile.jpg
├── testMCServlet.properties
├── testMassCalc.properties
├── testModificationConversionParser_control.txt
├── testModificationParser_control.txt
├── testMonitor.zip
└── testSelfDefinedList.properties
/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | derby.log
3 | /.idea/
4 | /src/test/resources/*
5 | /docs/
--------------------------------------------------------------------------------
/compomics-utilities.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/compomics-utilities.ico
--------------------------------------------------------------------------------
/resources/conf/gene_mappings/ensembl_versions:
--------------------------------------------------------------------------------
1 | sscrofa_gene_ensembl Ensembl 110
2 | hsapiens_gene_ensembl Ensembl 110
3 |
--------------------------------------------------------------------------------
/src/main/assembly/zip.xml:
--------------------------------------------------------------------------------
1 |
28 | 181.014010 = T
29 | 243.029660 = Y
30 |
31 | 114.0555 = A
12 | To change the Java version used set the Java Home option to point
13 | to the bin folder of the Java version to use, for example, "C:\Program Files\Java\jre1.8.0_25\bin".
14 |
13 | To increase the upper memory limit increase the Memory Limit value.
14 | The upper limit is the RAM memory available in your computers. The
15 | value is given in MB.
16 |
12 | X!Tandem comes with many options allowing you to fine tune the search settings. Note that these settings aim to be
13 | used by advanced users only. It is highly recommended to carefully test any change to the default settings, to document them and report them in any publication/report.
14 |
28 | 181.014010 = T
29 | 243.029660 = Y
30 |
31 | 114.0555 = A
12 | To change the Java version used set the Java Home option to point
13 | to the bin folder of the Java version to use, for example, "C:\Program Files\Java\jre1.8.0_25\bin".
14 |
13 | To increase the upper memory limit increase the Memory Limit value.
14 | The upper limit is the RAM memory available in your computers. The
15 | value is given in MB.
16 |
12 | X!Tandem comes with many options allowing you to fine tune the search settings. Note that these settings aim to be
13 | used by advanced users only. It is highly recommended to carefully test any change to the default settings, to document them and report them in any publication/report.
14 | Atomic Composition
10 |
11 | Select the isotope type and the number of copies for each of the atoms making up the given PTM, neutral
12 | loss or reporter ion.
13 |
14 | Note that for PTMs you can also subtract atoms. This is done by setting the number of copies for the given atom to a negative value.
15 |
16 |
17 |
18 | s
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/FractionPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Fraction Analysis
10 |
11 |
12 | Options
13 |
14 |
19 |
18 |
20 | Go to top of page
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/GeneAnnotationPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Gene Annotation
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/InSilicoProteinDigestion.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | In Silico Protein Digestion
10 | Insert a protein sequence, either in FASTA format or simply a continuous sequence of amino acids,
11 | and select an enzyme to in silico digest the sequence. The maximum number of missed cleavages and
12 | lower and upper mass limits can also be selected.
13 |
14 | All theoretical peptides are listed in the Peptides table, and the coverage is displayed
15 | in the Sequence Coverage panel to right, where the covered parts of the sequence and the currently
16 | selected peptde (in the Peptide table) are highlighted.
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/JavaHomeDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Java Home
10 |
11 |
15 | Note that the tool has to be restarted in order to take the new settings into account.
16 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/JavaOptionsDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Java Options
10 |
11 | Memory Limit
12 |
17 | For example, if you computer has 2 GB of RAM memory, you can change
18 | the value to a maximum value of 2048 (and usually the actual limit
19 | is a bit lower than the max).
20 |
21 | If the selected value is not supported by your system (32 bits only),
22 | the value will be reduced automatically.
23 |
24 | Note that the tool has to be restarted in order to take
25 | the new settings into account.
26 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/NewEnzymeDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | New Enzyme
10 |
11 |
12 |
14 |
15 |
16 | Introduction
17 | To create a custom enzyme, simply provide an enzyme name and the cleavage
18 | pattern as comma separated lists of (one letter) amino acids. It is also
19 | recommended to provide a PSI-MS CV term, as this will be used in, for
20 | example, the mzIdentML export.
21 |
22 | If you encounter any issues
23 | with enzymes in SearchGUI, please contact the developers.
24 |
25 | Go to top of page
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/PeptideVariantsPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Peptide Variants
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/ProteinInferencePreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Protein Inference
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/PsmScoringPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PSM Scoring
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/PtmLocalizationPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PTM Localization
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/QualityControlPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Quality Control
10 |
11 | These settings allow you to define which PSMs, peptides and proteins that should be considered as Doubtful.
12 |
13 | For more details, please see our tutorials, in particular Chapter 1.5 about Validation.
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/SequenceMatchingPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Sequence Matching
10 |
11 | more details are coming soon...
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/ValidationPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Validation Levels
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/helpFiles/XTandemSettingsDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | X!Tandem Advanced Settings
10 |
11 |
15 | For more help, consult the X!Tandem API. If you are missing a parameter, please contact the developers.
16 |
19 |
20 |
--------------------------------------------------------------------------------
/src/main/resources/icons/accept-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/accept-new.png
--------------------------------------------------------------------------------
/src/main/resources/icons/accept.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/accept.png
--------------------------------------------------------------------------------
/src/main/resources/icons/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/close.png
--------------------------------------------------------------------------------
/src/main/resources/icons/close_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/close_grey.png
--------------------------------------------------------------------------------
/src/main/resources/icons/compomics-utilities.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/compomics-utilities.png
--------------------------------------------------------------------------------
/src/main/resources/icons/compomics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/compomics.png
--------------------------------------------------------------------------------
/src/main/resources/icons/contextual_menu_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/contextual_menu_black.png
--------------------------------------------------------------------------------
/src/main/resources/icons/contextual_menu_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/contextual_menu_gray.png
--------------------------------------------------------------------------------
/src/main/resources/icons/edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/edit.png
--------------------------------------------------------------------------------
/src/main/resources/icons/edit_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/edit_gray.png
--------------------------------------------------------------------------------
/src/main/resources/icons/error-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/error-new.png
--------------------------------------------------------------------------------
/src/main/resources/icons/help.GIF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/help.GIF
--------------------------------------------------------------------------------
/src/main/resources/icons/help_no_frame.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/help_no_frame.png
--------------------------------------------------------------------------------
/src/main/resources/icons/help_no_frame_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/help_no_frame_grey.png
--------------------------------------------------------------------------------
/src/main/resources/icons/intelliJ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/intelliJ.png
--------------------------------------------------------------------------------
/src/main/resources/icons/java.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/java.png
--------------------------------------------------------------------------------
/src/main/resources/icons/maven.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/maven.png
--------------------------------------------------------------------------------
/src/main/resources/icons/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/next.png
--------------------------------------------------------------------------------
/src/main/resources/icons/next_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/next_grey.png
--------------------------------------------------------------------------------
/src/main/resources/icons/ols_transparent.GIF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/ols_transparent.GIF
--------------------------------------------------------------------------------
/src/main/resources/icons/peptide-shaker-medium-orange-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/peptide-shaker-medium-orange-shadow.png
--------------------------------------------------------------------------------
/src/main/resources/icons/peptide-shaker-orange.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/peptide-shaker-orange.gif
--------------------------------------------------------------------------------
/src/main/resources/icons/peptide-shaker.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/peptide-shaker.gif
--------------------------------------------------------------------------------
/src/main/resources/icons/pinned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/pinned.png
--------------------------------------------------------------------------------
/src/main/resources/icons/previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/previous.png
--------------------------------------------------------------------------------
/src/main/resources/icons/previous_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/previous_grey.png
--------------------------------------------------------------------------------
/src/main/resources/icons/pwiz_purple_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/pwiz_purple_logo.png
--------------------------------------------------------------------------------
/src/main/resources/icons/relims_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/relims_logo.png
--------------------------------------------------------------------------------
/src/main/resources/icons/reporter_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/reporter_logo.png
--------------------------------------------------------------------------------
/src/main/resources/icons/searchgui-medium-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/searchgui-medium-shadow.png
--------------------------------------------------------------------------------
/src/main/resources/icons/searchgui-orange.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/searchgui-orange.gif
--------------------------------------------------------------------------------
/src/main/resources/icons/searchgui.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/searchgui.gif
--------------------------------------------------------------------------------
/src/main/resources/icons/selected_green-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/selected_green-new.png
--------------------------------------------------------------------------------
/src/main/resources/icons/selected_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/selected_green.png
--------------------------------------------------------------------------------
/src/main/resources/icons/ugent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/ugent.png
--------------------------------------------------------------------------------
/src/main/resources/icons/unpinned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/unpinned.png
--------------------------------------------------------------------------------
/src/main/resources/icons/vib.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/vib.png
--------------------------------------------------------------------------------
/src/main/resources/icons/warning-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/warning-new.png
--------------------------------------------------------------------------------
/src/main/resources/icons/warning2-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/warning2-new.png
--------------------------------------------------------------------------------
/src/main/resources/icons/yourkit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/main/resources/icons/yourkit.png
--------------------------------------------------------------------------------
/src/main/resources/isotopicElement.txt:
--------------------------------------------------------------------------------
1 | #The element, dalton difference, occurrence
2 | C,1,0.01107
3 | N,1,0.003663
4 | H,1,0.00015
5 | O,2,0.002036
6 | S,2,0.0421
7 | O,1,0.000374
8 | S,1,0.0075
9 | S,4,0.0002
--------------------------------------------------------------------------------
/src/main/resources/kyte_doolittle.properties:
--------------------------------------------------------------------------------
1 | A = 1.800
2 | R = -4.500
3 | N = -3.500
4 | D = -3.500
5 | C = 2.500
6 | Q = -3.500
7 | E = -3.500
8 | G = -0.400
9 | H = -3.200
10 | I = 4.500
11 | L = 3.800
12 | K = -3.900
13 | M = 1.900
14 | F = 2.800
15 | P = -1.600
16 | S = -0.800
17 | T = -0.700
18 | W = -0.900
19 | Y = -1.300
20 | V = 4.200
--------------------------------------------------------------------------------
/src/main/resources/meek.properties:
--------------------------------------------------------------------------------
1 | A = 7.300
2 | R = -3.600
3 | N = -5.700
4 | D = -2.900
5 | C = -9.200
6 | Q = -0.300
7 | E = -7.100
8 | G = -1.200
9 | H = -2.100
10 | I = 6.600
11 | L = 20.000
12 | K = -3.700
13 | M = 5.600
14 | F = 19.200
15 | P = 5.100
16 | S = -4.100
17 | T = 0.800
18 | W = 16.300
19 | Y = 5.900
20 | V = 3.500
--------------------------------------------------------------------------------
/src/main/resources/modificationConversion.txt:
--------------------------------------------------------------------------------
1 | # No notation as of yet!!!
2 | # Devised these myself!
3 | Carbamidomethyl (C)=Cmm
4 | N-Formyl (Protein)=For
5 | Myristoylation (K)=Myr
6 | Amide (C-term)=Ami
7 |
8 | # These need some work for the N-term!!
9 | Acetyl (K)=Ace
10 | Acetyl (N-term)=Ace
11 |
12 | # Check these.
13 | Me-ester (DE)=Met
14 | Me-ester (C-term)=Met
15 | Phospho (ST)=P
16 | Phospho (Y)=P
17 | Sulphone (M)=Sul
18 |
19 | # Not in Mascot?
20 | NONE1=DiS
21 | NONE2=HOx
22 | #NONE3=For
23 | NONE4=COx
24 | NONE5=Cys
25 |
26 |
27 | # These are OK.
28 | Pyro-glu (N-term Q)=Pyr
29 | Pyro-glu (N-term E)=Pyr
30 | Oxidation (M)=Mox
31 | Deamidation (NQ)=Dam
32 | HSe=Hse
33 | Propionamide (C)=Prp
34 | Carbamyl (N-term)=Car
35 | thioprop (N-term)=Tpr
36 | thiopropcar (N-term)=Tpc
37 | ThiopropLys (K)=Tpl
38 | ThiopropCarbLys (K)=Tcl
39 | Homoarg (K)=Har
--------------------------------------------------------------------------------
/src/main/resources/modifications.properties:
--------------------------------------------------------------------------------
1 | Ox = 14, Oxidation
2 | Ace = 28, Acetylation
3 | Spe = -44
4 | Pyr = 12
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/io/AminoAcidPatternParsingTest.java:
--------------------------------------------------------------------------------
1 | package com.compomics.util.test.experiment.io;
2 |
3 | import com.compomics.util.experiment.biology.aminoacids.sequence.AminoAcidPattern;
4 | import org.junit.Assert;
5 | import junit.framework.TestCase;
6 |
7 | /**
8 | * This class tests the parsing of amino acid patterns.
9 | *
10 | * @author Marc Vaudel
11 | */
12 | public class AminoAcidPatternParsingTest extends TestCase {
13 |
14 |
15 | public void testParsing() {
16 |
17 | String testInput = "TEST";
18 | String expectedOutput = testInput;
19 | AminoAcidPattern aminoAcidPattern = AminoAcidPattern.getAminoAcidPatternFromString(testInput);
20 | String testOutput = aminoAcidPattern.toString();
21 | Assert.assertTrue(expectedOutput.equals(testOutput));
22 |
23 | testInput = "[TEST]TE[ST]";
24 | expectedOutput = testInput;
25 | aminoAcidPattern = AminoAcidPattern.getAminoAcidPatternFromString(testInput);
26 | testOutput = aminoAcidPattern.toString();
27 | Assert.assertTrue(expectedOutput.equals(testOutput));
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/io/identifications/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for the identification parsing.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/io/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for file IO.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/io/spectrum/SpectrumImportTest.java:
--------------------------------------------------------------------------------
1 | package com.compomics.util.test.experiment.io.spectrum;
2 |
3 | import junit.framework.TestCase;
4 |
5 | import java.io.File;
6 |
7 | /**
8 | * This test case will test the mgf import and spectrum annotation
9 | *
10 | * @author Marc Vaudel
11 | */
12 | public class SpectrumImportTest extends TestCase {
13 |
14 | public void testSpectrumImportFromMgf() throws Exception {
15 | File mgfFile = new File("src/test/resources/experiment/test.mgf");
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/io/spectrum/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for the spectrum files parsing.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Test classes for the experiment package.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/sequences/digestion/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for sequence manipulation.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/sequences/indexing/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for sequence manipulation.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/sequences/matching/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for sequence manipulation.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/sequences/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for spectrum indexing.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/spectrum/indexing/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for sequence manipulation.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/experiment/spectrum/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Package containing the tests for sequence manipulation.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/general/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This package holds all the tests for the classes
4 | from the util.general package.
5 |
6 | @see util.general
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/general/servlet/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Tests for the servlet representations of the general
4 | utilities package.
5 |
6 | @see com.compomics.util.general.servlet
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/io/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This package contains the tests for all the classes
4 | in the com.compomics.util.io package.
5 |
6 | @see com.compomics.util.io
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/math/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This package contains the tests for all the classes
4 | in the com.compomics.util.math package.
5 |
6 | @see com.compomics.util.math
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/nucleotide/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This package contains the tests for all the classes
4 | in the com.compomics.util.nucleotide package.
5 |
6 | @see com.compomics.util.nucleotide
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This package groups all the tests for the utilities project.
4 |
5 | The package names inside this package reflect the package
6 | names within util of the utilities the tests are for.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/java/com/compomics/util/test/protein/package.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | This package contains the tests for all the classes
4 | in the com.compomics.util.protein package.
5 |
6 | @see com.compomics.util.protein
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/resources/DNA_Protein_Translation.properties:
--------------------------------------------------------------------------------
1 | # This code is the 'standard' genetic code!
2 | TCA = S
3 | TCC = S
4 | TCG = S
5 | TCT = S
6 | TTC = F
7 | TTT = F
8 | TTA = L
9 | TTG = L
10 | TAC = Y
11 | TAT = Y
12 | TAA = _
13 | TAG = _
14 | TGC = C
15 | TGT = C
16 | TGA = _
17 | TGG = W
18 | CTA = L
19 | CTC = L
20 | CTG = L
21 | CTT = L
22 | CCA = P
23 | CCC = P
24 | CCG = P
25 | CCT = P
26 | CAC = H
27 | CAT = H
28 | CAA = Q
29 | CAG = Q
30 | CGA = R
31 | CGC = R
32 | CGG = R
33 | CGT = R
34 | ATA = I
35 | ATC = I
36 | ATT = I
37 | ATG = M
38 | ACA = T
39 | ACC = T
40 | ACG = T
41 | ACT = T
42 | AAC = N
43 | AAT = N
44 | AAA = K
45 | AAG = K
46 | AGC = S
47 | AGT = S
48 | AGA = R
49 | AGG = R
50 | GTA = V
51 | GTC = V
52 | GTG = V
53 | GTT = V
54 | GCA = A
55 | GCC = A
56 | GCG = A
57 | GCT = A
58 | GAC = D
59 | GAT = D
60 | GAA = E
61 | GAG = E
62 | GGA = G
63 | GGC = G
64 | GGG = G
65 | GGT = G
--------------------------------------------------------------------------------
/src/test/resources/DefaultJavaOptions.txt:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # #
3 | # Parameters to the Java virtual machine. #
4 | # #
5 | # To increase the upper memory limit increase the number on the second line #
6 | # below. Your upper limit is the RAM memory available in your computers. Set #
7 | # it to around three times the size of the spectrum file you want to convert. #
8 | # #
9 | # For example, if you computer has 2GB of RAM memory, you can change the #
10 | # second line to a maximum value of: #
11 | # -Xmx2048M #
12 | # #
13 | ################################################################################
14 | -Xms128M
15 | -Xmx****M
16 |
--------------------------------------------------------------------------------
/src/test/resources/FTPClient.properties:
--------------------------------------------------------------------------------
1 | # This file contains settings for the automated unit testing of
2 | # the FTPClient class.
3 | server = polaris
4 | user = ftpUSer
5 | password = openFTP
6 |
7 | destination = C:/Inetpub/ftproot
8 |
9 | performTest = 0
--------------------------------------------------------------------------------
/src/test/resources/META-INF/services/com.compomics.util.experiment.io.identifications.IdfileReader:
--------------------------------------------------------------------------------
1 | com.compomics.util.experiment.io.identification.idfilereaders.AndromedaIdfileReader
2 | com.compomics.util.experiment.io.identification.idfilereaders.MzIdentMLIdfileReader
3 | com.compomics.util.experiment.io.identification.idfilereaders.MascotIdfileReader
4 | com.compomics.util.experiment.io.identification.idfilereaders.PepNovoIdfileReader
5 | com.compomics.util.experiment.io.identification.idfilereaders.DirecTagIdfileReader
6 | com.compomics.util.experiment.io.identification.idfilereaders.MsAmandaIdfileReader
7 | com.compomics.util.experiment.io.identification.idfilereaders.PepxmlIdfileReader
8 | com.compomics.util.experiment.io.identification.idfilereaders.PNovoIdfileReader
9 | com.compomics.util.experiment.io.identification.idfilereaders.TideIdfileReader
10 | com.compomics.util.experiment.io.identification.idfilereaders.NovorIdfileReader
11 | com.compomics.util.experiment.io.identification.idfilereaders.OnyaseIdfileReader
12 | com.compomics.util.experiment.io.identification.idfilereaders.XTandemIdfileReader
--------------------------------------------------------------------------------
/src/test/resources/MonoAAMasses.properties:
--------------------------------------------------------------------------------
1 | A = 71.03711
2 | R = 156.10111
3 | N = 114.04293
4 | D = 115.02694
5 | C = 103.00919
6 | Q = 128.05858
7 | E = 129.04259
8 | G = 57.02146
9 | H = 137.05891
10 | I = 113.08406
11 | L = 113.08406
12 | J = 113.08406
13 | K = 128.09496
14 | M = 131.04049
15 | F = 147.06841
16 | P = 97.05276
17 | S = 87.03203
18 | T = 101.04768
19 | W = 186.07931
20 | Y = 163.06333
21 | V = 99.06841
22 | B = 114.04293
23 | Z = 128.05858
24 | X = 118.80450
25 | U = 168.96420
26 | O = 114.146
27 | _ = 0.0
28 | - = 0.0
29 | * = 0.0
--------------------------------------------------------------------------------
/src/test/resources/MonoElementMasses.properties:
--------------------------------------------------------------------------------
1 | H = 1.007825
2 | Li = 7.016003
3 | C = 12.000000
4 | N = 14.003074
5 | O = 15.994915
6 | F = 18.998403
7 | Na = 22.989768
8 | Mg = 23.985142
9 | P = 30.973762
10 | S = 31.972071
11 | Cl = 34.968853
12 | K = 38.963707
13 | Ca = 39.962591
14 | Br = 78.918336
15 | I = 126.904473
16 | Cs = 132.905429
--------------------------------------------------------------------------------
/src/test/resources/MonoNucleotideMasses.properties:
--------------------------------------------------------------------------------
1 | G = 329.20894
2 | A = 313.20954
3 | T = 304.19618
4 | C = 289.18454
--------------------------------------------------------------------------------
/src/test/resources/SpectrumPanel.properties:
--------------------------------------------------------------------------------
1 | 71.03711 = A
2 | 156.10111 = R
3 | 114.04293 = N
4 | 115.02694 = D
5 | 103.00919 = C
6 | 128.05858 = Q
7 | 129.04259 = E
8 | 57.02146 = G
9 | 137.05891 = H
10 | 113.08406 = I/L
11 | 128.09496 = K
12 | 131.04049 = M
13 | 147.035405 = MAtomic Composition
10 |
11 | Select the isotope type and the number of copies for each of the atoms making up the given PTM, neutral
12 | loss or reporter ion.
13 |
14 | Note that for PTMs you can also subtract atoms. This is done by setting the number of copies for the given atom to a negative value.
15 |
16 |
17 |
18 | s
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/FractionPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Fraction Analysis
10 |
11 |
12 | Options
13 |
14 |
19 |
18 |
20 | Go to top of page
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/GeneAnnotationPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Gene Annotation
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/InSilicoProteinDigestion.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | In Silico Protein Digestion
10 | Insert a protein sequence, either in FASTA format or simply a continuous sequence of amino acids,
11 | and select an enzyme to in silico digest the sequence. The maximum number of missed cleavages and
12 | lower and upper mass limits can also be selected.
13 |
14 | All theoretical peptides are listed in the Peptides table, and the coverage is displayed
15 | in the Sequence Coverage panel to right, where the covered parts of the sequence and the currently
16 | selected peptde (in the Peptide table) are highlighted.
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/JavaHomeDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Java Home
10 |
11 |
15 | Note that the tool has to be restarted in order to take the new settings into account.
16 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/JavaOptionsDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Java Options
10 |
11 | Memory Limit
12 |
17 | For example, if you computer has 2 GB of RAM memory, you can change
18 | the value to a maximum value of 2048 (and usually the actual limit
19 | is a bit lower than the max).
20 |
21 | If the selected value is not supported by your system (32 bits only),
22 | the value will be reduced automatically.
23 |
24 | Note that the tool has to be restarted in order to take
25 | the new settings into account.
26 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/PeptideVariantsPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Peptide Variants
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/ProteinInferencePreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Protein Inference
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/PsmScoringPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PSM Scoring
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/PtmLocalizationPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PTM Localization
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/QualityControlPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Quality Control
10 |
11 | These settings allow you to define which PSMs, peptides and proteins that should be considered as Doubtful.
12 |
13 | For more details, please see our tutorials, in particular Chapter 1.5 about Validation.
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/SequenceMatchingPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Sequence Matching
10 |
11 | more details are coming soon...
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/ValidationPreferences.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Validation Levels
10 |
11 |
12 | more details are coming soon...
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/test/resources/helpFiles/XTandemSettingsDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | X!Tandem Advanced Settings
10 |
11 |
15 | For more help, consult the X!Tandem API. If you are missing a parameter, please contact the developers.
16 |
19 |
20 |
--------------------------------------------------------------------------------
/src/test/resources/icons/accept.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/accept.png
--------------------------------------------------------------------------------
/src/test/resources/icons/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/close.png
--------------------------------------------------------------------------------
/src/test/resources/icons/close_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/close_grey.png
--------------------------------------------------------------------------------
/src/test/resources/icons/compomics-utilities.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/compomics-utilities.png
--------------------------------------------------------------------------------
/src/test/resources/icons/compomics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/compomics.png
--------------------------------------------------------------------------------
/src/test/resources/icons/contextual_menu_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/contextual_menu_black.png
--------------------------------------------------------------------------------
/src/test/resources/icons/contextual_menu_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/contextual_menu_gray.png
--------------------------------------------------------------------------------
/src/test/resources/icons/edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/edit.png
--------------------------------------------------------------------------------
/src/test/resources/icons/edit_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/edit_gray.png
--------------------------------------------------------------------------------
/src/test/resources/icons/help.GIF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/help.GIF
--------------------------------------------------------------------------------
/src/test/resources/icons/help_no_frame.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/help_no_frame.png
--------------------------------------------------------------------------------
/src/test/resources/icons/help_no_frame_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/help_no_frame_grey.png
--------------------------------------------------------------------------------
/src/test/resources/icons/intelliJ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/intelliJ.png
--------------------------------------------------------------------------------
/src/test/resources/icons/java.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/java.png
--------------------------------------------------------------------------------
/src/test/resources/icons/maven.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/maven.png
--------------------------------------------------------------------------------
/src/test/resources/icons/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/next.png
--------------------------------------------------------------------------------
/src/test/resources/icons/next_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/next_grey.png
--------------------------------------------------------------------------------
/src/test/resources/icons/ols_transparent.GIF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/ols_transparent.GIF
--------------------------------------------------------------------------------
/src/test/resources/icons/peptide-shaker-medium-blue-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/peptide-shaker-medium-blue-shadow.png
--------------------------------------------------------------------------------
/src/test/resources/icons/peptide-shaker-medium-orange-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/peptide-shaker-medium-orange-shadow.png
--------------------------------------------------------------------------------
/src/test/resources/icons/peptide-shaker-orange.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/peptide-shaker-orange.gif
--------------------------------------------------------------------------------
/src/test/resources/icons/peptide-shaker.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/peptide-shaker.gif
--------------------------------------------------------------------------------
/src/test/resources/icons/pinned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/pinned.png
--------------------------------------------------------------------------------
/src/test/resources/icons/previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/previous.png
--------------------------------------------------------------------------------
/src/test/resources/icons/previous_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/previous_grey.png
--------------------------------------------------------------------------------
/src/test/resources/icons/pwiz_purple_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/pwiz_purple_logo.png
--------------------------------------------------------------------------------
/src/test/resources/icons/relims_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/relims_logo.png
--------------------------------------------------------------------------------
/src/test/resources/icons/reporter_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/reporter_logo.png
--------------------------------------------------------------------------------
/src/test/resources/icons/searchgui-medium-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/searchgui-medium-shadow.png
--------------------------------------------------------------------------------
/src/test/resources/icons/searchgui-orange.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/searchgui-orange.gif
--------------------------------------------------------------------------------
/src/test/resources/icons/searchgui.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/searchgui.gif
--------------------------------------------------------------------------------
/src/test/resources/icons/selected_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/selected_green.png
--------------------------------------------------------------------------------
/src/test/resources/icons/ugent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/ugent.png
--------------------------------------------------------------------------------
/src/test/resources/icons/unpinned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/unpinned.png
--------------------------------------------------------------------------------
/src/test/resources/icons/vib.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/vib.png
--------------------------------------------------------------------------------
/src/test/resources/icons/yourkit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/icons/yourkit.png
--------------------------------------------------------------------------------
/src/test/resources/isotopicElement.txt:
--------------------------------------------------------------------------------
1 | #The element, dalton difference, occurrence
2 | C,1,0.01107
3 | N,1,0.003663
4 | H,1,0.00015
5 | O,2,0.002036
6 | S,2,0.0421
7 | O,1,0.000374
8 | S,1,0.0075
9 | S,4,0.0002
--------------------------------------------------------------------------------
/src/test/resources/kyte_doolittle.properties:
--------------------------------------------------------------------------------
1 | A = 1.800
2 | R = -4.500
3 | N = -3.500
4 | D = -3.500
5 | C = 2.500
6 | Q = -3.500
7 | E = -3.500
8 | G = -0.400
9 | H = -3.200
10 | I = 4.500
11 | L = 3.800
12 | K = -3.900
13 | M = 1.900
14 | F = 2.800
15 | P = -1.600
16 | S = -0.800
17 | T = -0.700
18 | W = -0.900
19 | Y = -1.300
20 | V = 4.200
--------------------------------------------------------------------------------
/src/test/resources/meek.properties:
--------------------------------------------------------------------------------
1 | A = 7.300
2 | R = -3.600
3 | N = -5.700
4 | D = -2.900
5 | C = -9.200
6 | Q = -0.300
7 | E = -7.100
8 | G = -1.200
9 | H = -2.100
10 | I = 6.600
11 | L = 20.000
12 | K = -3.700
13 | M = 5.600
14 | F = 19.200
15 | P = 5.100
16 | S = -4.100
17 | T = 0.800
18 | W = 16.300
19 | Y = 5.900
20 | V = 3.500
--------------------------------------------------------------------------------
/src/test/resources/modificationConversion.txt:
--------------------------------------------------------------------------------
1 | # No notation as of yet!!!
2 | # Devised these myself!
3 | Carbamidomethyl (C)=Cmm
4 | N-Formyl (Protein)=For
5 | Myristoylation (K)=Myr
6 | Amide (C-term)=Ami
7 |
8 | # These need some work for the N-term!!
9 | Acetyl (K)=Ace
10 | Acetyl (N-term)=Ace
11 |
12 | # Check these.
13 | Me-ester (DE)=Met
14 | Me-ester (C-term)=Met
15 | Phospho (ST)=P
16 | Phospho (Y)=P
17 | Sulphone (M)=Sul
18 |
19 | # Not in Mascot?
20 | NONE1=DiS
21 | NONE2=HOx
22 | #NONE3=For
23 | NONE4=COx
24 | NONE5=Cys
25 |
26 |
27 | # These are OK.
28 | Pyro-glu (N-term Q)=Pyr
29 | Pyro-glu (N-term E)=Pyr
30 | Oxidation (M)=Mox
31 | Deamidation (NQ)=Dam
32 | HSe=Hse
33 | Propionamide (C)=Prp
34 | Carbamyl (N-term)=Car
35 | thioprop (N-term)=Tpr
36 | thiopropcar (N-term)=Tpc
37 | ThiopropLys (K)=Tpl
38 | ThiopropCarbLys (K)=Tcl
39 | Homoarg (K)=Har
--------------------------------------------------------------------------------
/src/test/resources/modifications.properties:
--------------------------------------------------------------------------------
1 | Ox = 14, Oxidation
2 | Ace = 28, Acetylation
3 | Spe = -44
4 | Pyr = 12
--------------------------------------------------------------------------------
/src/test/resources/test.spr.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/test.spr.gz
--------------------------------------------------------------------------------
/src/test/resources/testAddSelfDefinedList_AA.properties:
--------------------------------------------------------------------------------
1 | Mo = 149.04049
2 | W = 188.07931
--------------------------------------------------------------------------------
/src/test/resources/testAddSelfDefinedList_BiochemElements.properties:
--------------------------------------------------------------------------------
1 | Si = 27.9769
2 | Br = 80.918336
--------------------------------------------------------------------------------
/src/test/resources/testFile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/testFile.jpg
--------------------------------------------------------------------------------
/src/test/resources/testMCServlet.properties:
--------------------------------------------------------------------------------
1 | url=http://beo04.UGent.be/utilities/masscalc
2 | doTest=1
--------------------------------------------------------------------------------
/src/test/resources/testMassCalc.properties:
--------------------------------------------------------------------------------
1 | Br2O3 = 205.821417
2 | CH3CH2COOH = 74.03678
3 | H2O2 = 34.00548
4 | CH3Br = 93.941811
5 | (CH3)Br = 93.941811
6 | (CH3)2Br = 108.96528599999999
7 | (CH3)2Br(CH3)2 = 139.012236
8 | NHCH2CO = 57.021464
9 | NHCHCH3CO = 71.037114
10 | ((CH3)2Br)CH3 = 123.988761
11 | ((CH3)3C)CH2(C(CH3)3) = 128.1565
12 | H3PO4 = 97.97689700000001
13 | (O(H(O(P)O)H)O)H = 97.976897
--------------------------------------------------------------------------------
/src/test/resources/testModificationConversionParser_control.txt:
--------------------------------------------------------------------------------
1 | Acetyl (K)=Ace
2 | Acetyl (N-term)=Ace
3 | Amide (C-term)=Ami
4 | Carbamidomethyl (C)=Cmm
5 | Carbamyl (N-term)=Car
6 | Deamidation (NQ)=Dam
7 | Homoarg (K)=Har
8 | Me-ester (C-term)=Met
9 | Me-ester (DE)=Met
10 | Myristoylation (K)=Myr
11 | N-Formyl (Protein)=For
12 | Oxidation (M)=Mox
13 | Phospho (ST)=P
14 | Phospho (Y)=P
15 | Propionamide (C)=Prp
16 | Pyro-glu (N-term E)=Pyr
17 | Pyro-glu (N-term Q)=Pyr
18 | Sulphone (M)=Sul
19 | ThiopropCarbLys (K)=Tcl
20 | ThiopropLys (K)=Tpl
21 | thioprop (N-term)=Tpr
22 | thiopropcar (N-term)=Tpc
--------------------------------------------------------------------------------
/src/test/resources/testMonitor.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompOmics/compomics-utilities/5ec488fea6f02d4c3153891668a9f92c0d109084/src/test/resources/testMonitor.zip
--------------------------------------------------------------------------------
/src/test/resources/testSelfDefinedList.properties:
--------------------------------------------------------------------------------
1 | R = 4.0
2 | W = 2.0
3 | X = 1
--------------------------------------------------------------------------------