⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 annotatedspectrum.h

📁 MS-Clustering is designed to rapidly cluster large MS/MS datasets. The program merges similar spectr
💻 H
字号:
#ifndef __ANNOTATEDSPECTRUM_H__
#define __ANNOTATEDSPECTRUM_H__

#include "Spectrum.h"
#include "Model.h"
#include "includes.h"


struct PeakAnnotation {
	string label;
	int breakage_idx;
	int frag_type_idx;
};

/***************************************************************
Finds all the peaks in the given spectrum that support a breakage
at a certain location.
****************************************************************/
void annotate_breakage(Spectrum *spec,
					   mass_t pm_with_19, 
					   int peptide_size_idx,
					   Breakage& breakage);

// report file names of files that have a minimal b/y stretch
void filter_file_list(const FileManager& fm, Config *config, ostream& os = cout);


class AnnotatedSpectrum : public Spectrum {
public:

	vector<Breakage>& get_non_const_breakages() { return breakages; }
	const vector<Breakage>& get_breakages() const { return breakages; }
	const vector< vector< PeakAnnotation> >& get_peak_annotations() const { return peak_annotations; }

	void extract_annotated_intens_and_masses(vector< vector<intensity_t> >& intens,
											 vector< vector<mass_t> >&      masses) const;


	// annoatates spectrum using the spectrum's config
	void annotate_spectrum(mass_t pm_with_19,
						   bool reset_annotations = false);

	int get_num_annotated_peaks() const;

	
	bool has_stretch_of_b_or_y(int min_stretch_length = 8, int max_skip =1);

	void print_annotated(ostream& os = cout) const;

	// how many of the expected fragment peaks were observed
	void get_number_observed_frags(const vector<int>& frag_types, int& num_obs, int &num_exp) const;

	int get_num_observed_frags(int frag_idx) const;


	float get_explianed_intensity() const;


	// chooses the charge that gives a good_pm_with_19
	void set_charge_from_seq_and_m_over_z();

	
private:
	vector< Breakage > breakages;
	vector< vector< PeakAnnotation > > peak_annotations;


};

void print_dataset_spectra_by_stats(Config *config, char *mgf_file);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -