亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? doxyfile

?? RNA二級結構預測程序
??
?? 第 1 頁 / 共 3 頁
字號:
# tags, which will be replaced by the file and line number from which the # warning originated and the warning text.WARN_FORMAT            = "$file:$line: $text"# The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr.WARN_LOGFILE           = #---------------------------------------------------------------------------# configuration options related to the input files#---------------------------------------------------------------------------# The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces.INPUT                  = ../src/ .# If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp # *.h++ *.idl *.odl *.cs *.php *.php3 *.incFILE_PATTERNS          = *.c *.h *.dox# The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used.RECURSIVE              = YES# The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag.EXCLUDE                = ../src/g2_fif.c g2_fif.h# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories # that are symbolic links (a Unix filesystem feature) are excluded from the input.EXCLUDE_SYMLINKS       = NO# If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories.EXCLUDE_PATTERNS       = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command).EXAMPLE_PATH           = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included.EXAMPLE_PATTERNS       = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used.EXAMPLE_RECURSIVE      = NO# The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command).IMAGE_PATH             = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output.INPUT_FILTER           = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES).FILTER_SOURCE_FILES    = NO#---------------------------------------------------------------------------# configuration options related to source browsing#---------------------------------------------------------------------------# If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO.SOURCE_BROWSER         = NO# Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation.INLINE_SOURCES         = NO# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible.STRIP_CODE_COMMENTS    = YES# If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed.REFERENCED_BY_RELATION = YES# If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed.REFERENCES_RELATION    = YES# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this.VERBATIM_HEADERS       = YES#---------------------------------------------------------------------------# configuration options related to the alphabetical class index#---------------------------------------------------------------------------# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces.ALPHABETICAL_INDEX     = NO# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20])COLS_IN_ALPHA_INDEX    = 5# In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers.IGNORE_PREFIX          = #---------------------------------------------------------------------------# configuration options related to the HTML output#---------------------------------------------------------------------------# If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output.GENERATE_HTML          = YES# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path.HTML_OUTPUT            = html# The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension.HTML_FILE_EXTENSION    = .html# The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header.HTML_HEADER            = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer.HTML_FOOTER            = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased!HTML_STYLESHEET        = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used.HTML_ALIGN_MEMBERS     = YES# If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation.GENERATE_HTMLHELP      = NO# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory.CHM_FILE               = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp.HHC_LOCATION           = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO).GENERATE_CHI           = NO# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file.BINARY_TOC             = NO# The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view.TOC_EXPAND             = NO# The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it.DISABLE_INDEX          = NO# This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation.ENUM_VALUES_PER_LINE   = 4# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be# generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature.GENERATE_TREEVIEW      = NO# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown.TREEVIEW_WIDTH         = 250#---------------------------------------------------------------------------# configuration options related to the LaTeX output#---------------------------------------------------------------------------# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output.GENERATE_LATEX         = YES# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path.LATEX_OUTPUT           = latex# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name.LATEX_CMD_NAME         = latex# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name.MAKEINDEX_CMD_NAME     = makeindex# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general.COMPACT_LATEX          = NO# The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used.PAPER_TYPE             =# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output.EXTRA_PACKAGES         = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing!LATEX_HEADER           = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer.PDF_HYPERLINKS         = NO# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation.USE_PDFLATEX           = NO# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML.LATEX_BATCHMODE        = NO# If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output.LATEX_HIDE_INDICES     = NO#---------------------------------------------------------------------------# configuration options related to the RTF output#---------------------------------------------------------------------------# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors.GENERATE_RTF           = NO# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path.RTF_OUTPUT             = rtf# If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general.COMPACT_RTF            = NO# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品萝li| 欧美一级二级三级乱码| 欧美主播一区二区三区美女| 欧美日韩精品一区二区三区蜜桃 | 一区在线中文字幕| 亚洲狠狠爱一区二区三区| 狠狠网亚洲精品| 色婷婷综合久久久久中文| 日韩视频不卡中文| 中文字幕亚洲一区二区av在线| 亚洲午夜一区二区| 国产成人av资源| 日本黄色一区二区| 久久久91精品国产一区二区精品 | 欧美日韩黄色一区二区| 久久先锋影音av鲁色资源| 亚洲精品成人精品456| 久久精品免费看| 色婷婷亚洲精品| 久久久影视传媒| 午夜精品一区二区三区电影天堂| 成人性视频网站| 日韩一级片在线播放| 中文字幕日韩一区| 久久66热re国产| 欧美性大战久久久久久久蜜臀| 久久久久国产精品麻豆ai换脸 | 欧美一卡2卡3卡4卡| 国产精品久久久久久久久免费相片| 亚洲成av人在线观看| 成人av网站大全| 欧美成人一区二区三区片免费| 悠悠色在线精品| 粉嫩蜜臀av国产精品网站| 日韩一区二区在线看片| 一区二区三区视频在线看| 国产风韵犹存在线视精品| 日韩一区和二区| 亚洲第一久久影院| 91猫先生在线| 国产精品久久久久精k8 | 亚洲一区二区三区免费视频| 国产盗摄一区二区三区| 日韩欧美一级二级| 午夜精品久久久久久久蜜桃app| 不卡一卡二卡三乱码免费网站| 精品国产髙清在线看国产毛片| 天天综合天天综合色| 在线日韩国产精品| 综合久久久久久| 99热精品一区二区| 国产精品理伦片| 国产不卡视频在线观看| 精品理论电影在线| 青青草一区二区三区| 欧美日韩成人综合| 亚洲国产欧美一区二区三区丁香婷| av激情综合网| 国产免费久久精品| 国产乱一区二区| 久久精品一二三| 国产在线精品免费av| 精品免费一区二区三区| 美女脱光内衣内裤视频久久网站| 制服视频三区第一页精品| 亚洲国产日日夜夜| 欧美日韩精品一区二区在线播放| 亚洲综合一区二区三区| 91国偷自产一区二区三区观看| 中文字幕在线不卡国产视频| av电影在线观看不卡| 中日韩免费视频中文字幕| 国产99久久久国产精品潘金| 久久精品视频免费观看| 成人午夜视频在线观看| 国产精品蜜臀在线观看| 99久久99久久精品免费看蜜桃| 国产精品毛片大码女人| 91免费版在线看| 亚洲影院在线观看| 欧美久久一区二区| 日本在线不卡视频一二三区| 日韩视频在线一区二区| 精品无码三级在线观看视频| 久久久久久久精| 成人高清视频在线| 一区二区三区免费在线观看| 欧美日韩黄视频| 久久电影网站中文字幕| 久久青草欧美一区二区三区| 成年人国产精品| 依依成人综合视频| 欧美精品一级二级三级| 国内精品视频一区二区三区八戒| 国产欧美日韩三级| 色哟哟亚洲精品| 日本不卡123| 国产亚洲午夜高清国产拍精品| 97久久精品人人爽人人爽蜜臀| 亚洲蜜桃精久久久久久久| 91精品国产综合久久精品app| 久久精品国产77777蜜臀| 国产三级精品视频| 在线观看日韩毛片| 久久97超碰国产精品超碰| 中文字幕一区二区在线播放| 精品视频在线免费观看| 狠狠色丁香久久婷婷综合丁香| 国产精品灌醉下药二区| 欧美丰满少妇xxxbbb| 国产成人av一区二区三区在线| 亚洲欧美国产三级| 日韩视频永久免费| jlzzjlzz欧美大全| 午夜精品久久久久久久久久久| 久久女同互慰一区二区三区| 色综合一区二区三区| 麻豆精品视频在线| 日韩精品乱码免费| 欧美激情一区二区三区蜜桃视频| 欧美三级日韩三级| 高清shemale亚洲人妖| 亚洲高清免费观看高清完整版在线观看| 欧美大黄免费观看| 91久久精品一区二区| 另类人妖一区二区av| 一区二区三区中文免费| 久久久久亚洲蜜桃| 欧美在线观看一区二区| 精品一区二区三区在线观看国产| 中文字幕一区二区三区精华液| 日韩欧美国产高清| 91国在线观看| 顶级嫩模精品视频在线看| 日本中文字幕一区二区视频| 国产精品成人在线观看| 精品国产99国产精品| 欧美三电影在线| 99热这里都是精品| 国内精品国产成人国产三级粉色| 亚洲一区二区黄色| 国产精品视频一二三区| 欧美电影免费观看完整版 | 婷婷亚洲久悠悠色悠在线播放 | 91成人国产精品| 成人一区二区三区中文字幕| 精品在线亚洲视频| 日本中文字幕不卡| 亚洲自拍偷拍麻豆| 中文字幕日韩一区| 日本一区二区三区在线不卡| 欧美一区二区观看视频| 欧美在线视频你懂得| 99视频热这里只有精品免费| 国产真实精品久久二三区| 日韩不卡一区二区三区| 亚洲福利视频一区二区| 亚洲美女偷拍久久| 国产精品九色蝌蚪自拍| 久久久精品免费免费| 亚洲精品在线免费播放| 日韩一区二区三免费高清| 欧美精品精品一区| 欧美日韩一区精品| 欧美亚洲国产bt| 91免费精品国自产拍在线不卡| 成人永久免费视频| 国产福利一区二区三区视频在线| 极品少妇一区二区| 激情偷乱视频一区二区三区| 蜜桃一区二区三区在线| 蜜臀久久99精品久久久画质超高清| 日韩中文字幕亚洲一区二区va在线 | 美美哒免费高清在线观看视频一区二区 | 成人美女视频在线看| 国产乱码精品一品二品| 国产麻豆日韩欧美久久| 国产精品一级片| 国产成人免费高清| 国产成人av资源| 成人av手机在线观看| 国产成人免费在线视频| 粉嫩蜜臀av国产精品网站| eeuss鲁片一区二区三区 | 一区二区三区91| 亚洲与欧洲av电影| 午夜精品久久久久久久蜜桃app| 亚洲123区在线观看| 婷婷夜色潮精品综合在线| 日本成人在线视频网站| 全国精品久久少妇| 国内久久婷婷综合| 成人app下载| 色综合久久久久| 欧美日韩一区二区不卡| 1区2区3区国产精品| 亚洲精品高清视频在线观看| 亚洲综合区在线| 日韩福利电影在线| 国产一区二区在线观看免费 |